0% found this document useful (0 votes)
155 views3 pages

Instructions:: WWW - Ekt

This document provides instructions for using an Arduino current sensor (SCT-013) to build an electricity meter. It describes the circuit components needed, including the current sensor, resistors, capacitor, LCD display and potentiometer. The sensor connects to the Arduino via an adapter or by wiring directly to two pins. The program code samples are provided using the EmonLib library to calculate current and power consumption values displayed on the LCD screen. Proper use of the non-invasive current sensor by wrapping only one wire is also outlined.

Uploaded by

Andi
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
155 views3 pages

Instructions:: WWW - Ekt

This document provides instructions for using an Arduino current sensor (SCT-013) to build an electricity meter. It describes the circuit components needed, including the current sensor, resistors, capacitor, LCD display and potentiometer. The sensor connects to the Arduino via an adapter or by wiring directly to two pins. The program code samples are provided using the EmonLib library to calculate current and power consumption values displayed on the LCD screen. Proper use of the non-invasive current sensor by wrapping only one wire is also outlined.

Uploaded by

Andi
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 3

ARDUINO CURRENT SENSOR AC 100A

Model:SCT-013-000
User Manual

Instructions:
There are several examples for the use of the sensors SCT-013 line with Arduino. There is also much
discussion regarding since found several different circuits and calculations that take into account
internal resistance equipment, signal wavelength, and many other variables.
Here is a short way to do an electricity meter with Arduino, which approached quite the calculations
made using the formula I = P / E shown above.
We set up the circuit below using:

• 2 10 K resistors
• 1 uF capacitor 100
• 1 Display LCD 16 × 2
• 1 Potentiometer 10K for adjusting the display contrast
The SCT sensor comes with a P2 plug, you can connect to the Arduino using an adapter. If you prefer,
remove the plug and use only two wires coming from the sensor:

Electronics Katrangi Trading

www.ekt2.com
We created the program based on information from the site Open Energy Monitor using the
libraryEmonLib created by them and available in the software. Unzip the EmonLib folder and place it
inside the Libraries folder Arduino IDE.

1 //Program : Electricity meter with Arduino and SCT- 013


2 // Based on the example program EmonLib library
3 // Loads libraries
4 #include "EmonLib.h"
5 #include <LiquidCrystal.h>
6
7 EnergyMonitor emon1;
8 LiquidCrystal lcd(12, 11, 5, 4, 3, 2);
9
10 // Power consumption
11 int rede = 110.0;
12
13 // Pino do sensor SCT
14 int pino_sct = 1;
15
16 void setup()
17 {
18 lcd.begin(16, 2);
19 lcd.clear();
20 Serial.begin(9600);
21 //Pino, calibration - Cur Const= Ratio/BurdenR. 1800/62 = 29.
22 emon1.current(pino_sct, 29);
23 // Information initial display
24 lcd.setCursor(0,0);
25 lcd.print("Corr.(A):");
26 lcd.setCursor(0,1);
27 lcd.print("Pot. (W):");
28 }
29
30 void loop()
31 {
32 // Calculate current
33 double Irms = emon1.calcIrms(1480);
34 // shows the value of the current
35 Serial.print("Current : ");
36 Serial.print(Irms); // Irms
37 lcd.setCursor(10,0);
38 lcd.print(Irms);
39
40 // Calculates and displays
41 Serial.print(" Power : ");
42 Serial.println(Irms*rede);
lcd.setCursor(10,1);
lcd.print(" ");
lcd.setCursor(10,1);
lcd.print(Irms*rede,1);

delay(1000);
}

Electronics Katrangi Trading

www.ekt2.com
Set the mains voltage by changing the variable network. Change the variable Pino_stc to use any other
(analog) input of the Arduino.

USING THE CURRENT METER:


The SCT 013-020-type sensor is considered "non-invasive". This means that, to measure current, do
not need to make any changes to the circuit that we are measuring. Just open the sensor, wrap the
wire and perform the measurement:

An important observation to perform the measurement is that the sensor must involve ONLY ONEof
the wires, as the image above. If we put the two wires within the sensor, the values are canceled and
the display will show the value 0 (zero), or some other incorrect value.

How to open Software:


- Enter to http://www.ekt2.com/products/productdetails?ProductId=E19EE62C-
8857-46E4-8F8B-A135C2F31D75

- Press the icon to start the download

Electronics Katrangi Trading

www.ekt2.com

You might also like