Advanced Metering Infrastructure (AMI) Using IoT
Advanced Metering Infrastructure (AMI) Using IoT
ISSN No:-2456-2165
The third stage involves the implementation of Overall, the methodology for AMI using IoT involves
demand response programs, which enable customers to the integration of various hardware components, data
modify their energy usage patterns in response to pricing analytics tools, demand response programs, and feedback
signals or other incentives. This helps in reducing energy mechanisms to enable utilities to monitor and optimize the
consumption during peak periods and improves the overall energy consumption patterns of their customers.
efficiency of the grid.
B. Hardware Components
C. Circuit Diagram
We utilized Fritzing software to generate the circuit Circuit diagram shown above using the Fritzing programme.
design shown above. The components used include a relay, The components utilized include a relay, a voltage sensor, a
a voltage sensor, a current sensor, an ESP32, a fan, a light, current sensor, an ESP32, a fan, a light, and a converter, all
and a converter, all of which are combined in the exact of which are combined in the exact needed form to produce
needed form to provide the desired output. We created the the desired output.
E. Voltage Calculation
STEPS:
Start, initializing 35 as current sensing pin and 32 as voltage sensing pin.
Initializing other variables for voltage calculations, current calculations and display.
Voltage calculation and current calculation display.
Power calculation from obtained current and voltage values.
Check for the condition is current is less then 1KWA.
If the value of current is more than 1KWA then set pin no 15 as low to relay or if the value of current is less than 1KWA then
then set pin no 15 as high to relay.
Stop.
The above figures shows the initial setup of the project using regulated power supply(RPS) as supply to the setup and DC
lamp and DC fan as load.
Coding steps:
Coding steps:
Coding steps:
Calculation of power by voltage times current
Voltage and current values from the voltage and current sensor are taken they were multiplied to get the power which his
given by formula “power=voltage *current”.
lcd.setCursor(0, 2);
lcd.print("P: ");
lcd.print(Power, 2);
lcd.setCursor(9, 2);
lcd.print("E: ");
lcd.print(Energy, 2);
lcd.setCursor(0, 3);
Code for power display
if (RelayRstVal == 0){
digitalWrite(RelayHPin, LOW);
Serial.println("Hi");
lcd.print("CONSUMPTION in LIMIT");
}
else if (Current > 0.6){
lcd.print("CONSUMPTION EXCEEDED");
digitalWrite(RelayHPin, HIGH);
}
else if ((Current < 0.6) && (RelayHVal == 1)){
lcd.print("Press Rst BUTTON");
}
else{
lcd.print("CONSUMPTION in LIMIT");
}
}
Codeforrelaycontrol
VI. CONCLUSION AND FUTURE SCOPE networks, and AI. These advances will enable AMI to
become even more efficient, secure, and scalable.
AMI using IOT has numerous advantages, including Additionally, the integration of renewable energy sources
increased energy efficiency, reduced costs, and improved into the grid will further improve the sustainability of the
system performance. It has the potential to revolutionize the system. Overall, AMI using IOT is a promising technology
way we consume energy by providing real-time information with enormous potential to transform the energy sector, and
on energy consumption and optimizing energy usage.In the its future looks bright.
future, AMI using IOT will continue to evolve, with
advances in technology such as edge computing, 5G