Site icon Circuit Ideas for You

Smart Energy Meter Circuit with Arduino UNO

Electric bill increasing day by day.

So we need smart way to measure power use.

Here is a simple project using Arduino UNO, ACS712 current sensor and 16×2 LCD with I2C.

It shows real time current, voltage and power.

This project for Smart Energy Meter Circuit with Arduino UNO help to monitor load and save electricity.

Circuit Coding:

#include <Wire.h>
#include <LiquidCrystal_I2C.h>

LiquidCrystal_I2C lcd(0x27,16,2);
int sensorPin = A0;
float sensitivity = 0.185;
float offset = 2.5;
float voltage = 220.0;

void setup() {
lcd.init();
lcd.backlight();
}

void loop() {
int adcValue = analogRead(sensorPin);
float Vout = (adcValue * 5.0) / 1023.0;
float current = (Vout - offset) / sensitivity;
if(current < 0) current = -current;
float power = voltage * current;

lcd.setCursor(0,0);
lcd.print("I=");
lcd.print(current,2);
lcd.print(" A ");

lcd.setCursor(0,1);
lcd.print("P=");
lcd.print(power,1);
lcd.print(" W ");

delay(500);
}

Coding Explanation:

Circuit Working:

Parts List:

ComponentQuantity
Arduino Uno1
Current Sensor ACS7121
LCD Display 16×2 with I2C1
240V AC Load1

Arduino UNO is brain of this circuit.

ACS712 sensor measure current from AC load.

The smart energy meter measures current through the load.

When AC current flow through load, ACS712 sense it.

Sensor give small voltage change to Arduino.

Arduino read this analog signal.

Using formula it calculate current.

Voltage is set fixed for example 220V.

Power calculated = Voltage x Current.

Result show on LCD in Ampere, Watt.

Formulas:

Below are some general formulas to calculate current:

Sensor output voltage at no load = Vcc/2 = 2.5V

Sensitivity of ACS712 5A = 185mV per Amp

Current = (Vout – 2.5) / 0.185

Power = Voltage x Current

Energy = Power x Time

How to Build:

To build a Smart Energy Meter Circuit with Arduino UNO following are the connection steps:

Conclusion:

This project for Smart Energy Meter Circuit with Arduino UNO is simple but useful.

It shows live current and power on LCD.

Help to save energy and check faulty appliances.

We can expand with SD card for logging or WiFi for IoT.

References:

Low Cost Arduino Based Smart Energy Monitoring System Using Internet of Things

Exit mobile version