SlideShare a Scribd company logo
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 06 Issue: 04 | Apr 2019 www.irjet.net p-ISSN: 2395-0072
© 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 1850
ARDUINO NANO BASED ALL IN ONE METER
K. Sai Rakesh1, P. SriRaghavendra2, R.S.V.Shivaram3, T.ch.Bhanuteja4
1,2,3,4Student, Pragati Engineering College, Surampalem, Andhra Pradesh, INDIA
---------------------------------------------------------------------***----------------------------------------------------------------------
Abstract - The main objective of this project is to build an
Arduino nano based All in one meter, a device that canbeused
to measure the voltage, current and the power consumed by a
load. There are number of ways that you can implement the
Arduino nano based all in one meter Project. One of the easy
ways is to interface a Voltage Sensor and a Current Sensor
with Arduino, measure the voltage and current values and
finally with some mathematics, you can calculatethePower in
Watts. The Sensor Part of the circuit is responsible for
measuring the Voltage across the load and Current through
the load. Both these values, which are analog in nature, are
given to the Arduino to its ADC. Arduino converts these values
to digital values and makes a few calculations as displays the
results on the LCD.
Key Words: Microcontroller,Sensorunit,AurdinoBoard,
Wattmeter, Measuring Instruments.
1. INTRODUCTION
As electrical engineers, we always depend upon
meters/instruments to measure and analyse the working of
a circuit. Starting with a simple multimeter to a complex
power quality analysers or DSOs everything has their own
unique applications. Most of these meters are readily
available and can be purchased based on the parameters to
be measured and their accuracy. But sometimes we might
end up in a situation where we need to build our own
meters. Say for instance you are working on a solar PV cell
and you would like to calculate the power consumption of
your load, in such scenarios we can build our own
Wattmeter using a simple microcontroller platform like
Arduino.
1.1 Measuring Instruments:
A measuring instrument is a device for measuring a physical
quantity. In the physical sciences, quality assurance, and
engineering, measurement is the activity of obtaining and
comparing physical quantities of real-world objects and
events. Established standard objects and events are used as
units, and the process of measurement gives a number
relating the item under study and the referenced unit of
measurement. Measuring instruments, and formal test
methods which define the instrument's use, are the means
by which these relations of numbers are obtained. All
measuring instruments are subject to varying degrees of
instrument error and measurement uncertainty.
These instruments may range from simple objects such as
rulers and stopwatches to electron microscopesandparticle
accelerators. Virtual instrumentation is widely used in the
development of modern measuring instruments.
Fig -1: Classification of Instruments
1.2 Ammeter
The meter uses for measuring the current is known as the
ammeter. The current is the flow of electrons whose unit is
ampere. Hence the instrument which measures the flows of
current in ampere is known as ampere meter or ammeter.
The ideal ammeter has zero internal resistance. But
practically the ammeter has small internal resistance. The
measuring range of the ammeter depends on the value of
resistance. The ammeter is connected in series with the
circuit so that the whole electrons of measurand current
passes through the ammeter. The power loss occurs in
ammeter because of the measurand current and their
internal resistance. The ammeter circuit has low resistance
so that the small voltage drop occurs in the circuit.
Fig -2: Ammeter
1.3 Aurdino
In default the Arduino is not equipped with a display to
visualize measuring-data, for example from your
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 06 Issue: 04 | Apr 2019 www.irjet.net p-ISSN: 2395-0072
© 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 1851
temperature or your pressure Sensor. If you want to get the
data shown you need a PC, printing the data totheconsole or
mounting a display directly to the Arduino. So there is no
simple way to WIRELESSLY visualizemeasuring-data.Inthis
intractableFig.2will showhowto transfer measuredSensor-
data in real-time from your Arduino-Microcontroller to
your Android-Smartphone via Bluetooth.
Fig -3: Bluetooth HC-05 and Arduino
2. PROBLEM FORMULATION
It is difficult or sometimes even impossible to measure
current, voltage and power at a time with ordinary
multimeters and watt meters. It is very expensive to
measure low power ratings with normal wattmeter and
multimeter
To overcome these disadvantages we are going to design a
special type of meter with Arduino nano microcontroller
with the help of the Arduino Microcontroller we can
measure voltage current and power at a time.
2.1 Existing Technology
The entire project can be divided into three basic blocks;
1) Power Sensor Unit
2) Processor Unit
3) Display Unit
The Power Sensor Unit allows the current to flow through a
device whose power consumption needs to be measured.
The Sensor Unit produces two voltages, one is the Voltage
output from the power supply and another one is a voltage
which ranges from 0 to 5V. The difference between these
two voltages is proportional to the amount of Current
flowing through the Sensor unit. The ProcessorUnitcantake
two input voltages both in the range of 0 to 5V. This unit
takes the Sensor Unit’s output as input voltages and usesthe
ADC to read these voltages. An Algorithm is then applied to
calculate the Power consumptionofthedevice.Theunitthen
sends a 4bit data to the Display Unit to display the power
consumption in Watts. The Display Unit takes the 4bit data
from the Processor Unit and produces a 16*2 display for the
current consumption of the device.
Fig -4: Block diagram
2.2 Proposed Technology
The circuit is designed to fit into systems operatingbetween
0-24V with a current range of 0-1A keeping in mind the
specification of small applications. But you can easilyextend
the range once you understand the working of the circuit.
The underlying principle behind the circuitistomeasurethe
voltage across the load and current through it to calculate
the power consumes by it. All the measured values will be
displayed in a 16*2 Alphanumeric LCD. For ease of
understanding the arduino wattmetercircuitissplitinto two
units. The upper part of the circuit is the measuring unit and
the lower part of the circuit is the computation and display
unit.
3. Hardware Implementation
The measuring unit consists of a potential divider to help us
measure the voltage and a shut resistorwitha Non-Inverting
Op-amp is used to help us measure the current through the
circuit. The output voltage of a potential divider can be
calculated using the below formulae. The same be used to
decide the value of your resistors, you can use our online
calculator to calculate value of resistor if you are re-
designing the circuit. Next we have to measure the current
through the LOAD. As we know microcontrollers can read
only analog voltage, so we need to somehow convert the
value of current to voltage. It can be done by simply addinga
resistor (shunt resistor) in the path which according to
Ohm’s law will drop a value of voltage across it that is
proportional to the current flowing through it. The value of
this voltage drop will be very less so we use an op-amp to
amplify it. The circuit for the same is shown below. Here in
our case the value of Rf is 20k and the value of Rin is 1k
which gives us a gian value of 21. The amplified voltageform
the Op-amp is then given to a RC filter with resistor 1k and a
capacitor 0.1uF to filter any noise that is coupled. Finally the
voltage is then fed to the Arduino analog pin.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 06 Issue: 04 | Apr 2019 www.irjet.net p-ISSN: 2395-0072
© 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 1852
Fig -5: Schematic diagram
4.1 Working
The Arduino Nano has a number of facilities for
communicating with a computer, another Arduino, or other
microcontrollers. The ATmega328 provide UART TTL (5V)
serial communication, which is available on digital pins 0
(RX) and 1 (TX). An FTDI FT232RL on the board channels
this serial communication over USB and the FTDI drivers
(included with the Arduino software) provide a virtual com
port to software on the computer. The Arduino software
includes a serial monitor which allows simpletextual data to
be sent to and from the Arduino board. The RX and TX LEDs
on the board will flash when data is being transmitted via
the FTDI chip and USB connection to the computer (but not
for serial communication on pins 0 and 1). A SoftwareSerial
library allows for serial communication on any oftheNano's
digital pins.
Fig -6: Arduino nano
4.2 Results
This kit explains about the project “Arduino Nano All in One
Meter” .In this project when supply is givenarduinoandLCD
are powered up. Power supply is adjusted to 24v with the
help of RPS. When the load is connected voltage, currentand
power values are displayed on the LCD.
Fig -7: Arduino nano all in one meter
5. CONCLUSION
This is a project based on Arduino board which can
measures the voltage, currentandpowerconsumptionofthe
devices at a time. When we connect this wattmeter on to a
device which is in operation, the 16*2 LCD displays its
voltage value in volts, current value in amperes and power
consumption value in Watts. The project uses an Arduino
pro mini board whose ADC feature is used along with the
concept of Ohm’s law and Voltage Divider circuit to develop
this Wattmeter. This project is cost friendly and have less
complexity. This project gives more accurate results for the
parameters.
6. FUTURE SCOPE
This Arduino based all in one meter project has many more
upgrades that can be added to increase the performance to
auto data logging, plotting graph, notifying over voltage or
over current situations etc. Also we can add other
parameters like energy , power factor etc by changing the
source code. By changing the component ratings in the
circuit we can measure high loads.
REFERENCES
1) HernandoBarragán(2016-01-01). "TheUntoldHistoryof
Arduino"
2) “Programming Arduino”, book by “Simon Monk”
3) https://circuitdigest.com/microcontroller-
projects/arduino-wattmeter-to-measure-voltage-
current-power-consumption
4) https://meettechniek.info/diy-instruments/arduino-
wattmeter.html
5) https://www.electronicshub.org/arduino-wattmeter/

More Related Content

What's hot

IRJET- Water Pump Controller using Arduino UNO
IRJET- Water Pump Controller using Arduino UNOIRJET- Water Pump Controller using Arduino UNO
IRJET- Water Pump Controller using Arduino UNO
IRJET Journal
 
IRJET - Speed Control of DC Motor by using IoT
IRJET -  	  Speed Control of DC Motor by using IoTIRJET -  	  Speed Control of DC Motor by using IoT
IRJET - Speed Control of DC Motor by using IoT
IRJET Journal
 
IRJET - Lie Detector using MATLAB, Arduino and Biomedical Sensors
IRJET -  	  Lie Detector using MATLAB, Arduino and Biomedical SensorsIRJET -  	  Lie Detector using MATLAB, Arduino and Biomedical Sensors
IRJET - Lie Detector using MATLAB, Arduino and Biomedical Sensors
IRJET Journal
 
Automatic Room Lights Controller Using Arduino & PIR Sensor
Automatic Room Lights Controller Using Arduino & PIR SensorAutomatic Room Lights Controller Using Arduino & PIR Sensor
Automatic Room Lights Controller Using Arduino & PIR Sensor
Ankit Chaudhary
 
IRJET- Sensors implementation in AGV & IoT based data visualization over clie...
IRJET- Sensors implementation in AGV & IoT based data visualization over clie...IRJET- Sensors implementation in AGV & IoT based data visualization over clie...
IRJET- Sensors implementation in AGV & IoT based data visualization over clie...
IRJET Journal
 
IRJET- Design of a Portable Contact-Less Tachometer using Infrared Sensor for...
IRJET- Design of a Portable Contact-Less Tachometer using Infrared Sensor for...IRJET- Design of a Portable Contact-Less Tachometer using Infrared Sensor for...
IRJET- Design of a Portable Contact-Less Tachometer using Infrared Sensor for...
IRJET Journal
 
Major Project Synopsis Report on IoT based DC Motor Through a Web-site
Major Project Synopsis Report on IoT based DC Motor Through a Web-siteMajor Project Synopsis Report on IoT based DC Motor Through a Web-site
Major Project Synopsis Report on IoT based DC Motor Through a Web-site
Utkarsh Chaubey
 
Development of Android Controlled AC Dim Light
Development of Android Controlled AC Dim LightDevelopment of Android Controlled AC Dim Light
Development of Android Controlled AC Dim Light
ijtsrd
 
IR BASED HOME AUTOMATION USING ARDUINO UNO
IR BASED HOME AUTOMATION USING ARDUINO UNOIR BASED HOME AUTOMATION USING ARDUINO UNO
IR BASED HOME AUTOMATION USING ARDUINO UNO
Mln Phaneendra
 
Home Automation System
Home Automation SystemHome Automation System
Home Automation System
MOHAMMAD TANVEER
 
IRJET- Testing the Induction Motor Voltage, Current, Torque, Speed, Power and...
IRJET- Testing the Induction Motor Voltage, Current, Torque, Speed, Power and...IRJET- Testing the Induction Motor Voltage, Current, Torque, Speed, Power and...
IRJET- Testing the Induction Motor Voltage, Current, Torque, Speed, Power and...
IRJET Journal
 
IRJET - Expansion of Logic Gates using Trainer
IRJET - Expansion of Logic Gates using TrainerIRJET - Expansion of Logic Gates using Trainer
IRJET - Expansion of Logic Gates using Trainer
IRJET Journal
 
REAL TIME AUTOMATION FOR COLLEGES
REAL TIME AUTOMATION  FOR COLLEGESREAL TIME AUTOMATION  FOR COLLEGES
REAL TIME AUTOMATION FOR COLLEGES
Nishmi Suresh
 
Automatic Room Light Controller Using Arduinom & PIR Sensor
Automatic Room Light Controller Using Arduinom & PIR SensorAutomatic Room Light Controller Using Arduinom & PIR Sensor
Automatic Room Light Controller Using Arduinom & PIR Sensor
Ankit Chaudhary
 
IRJET- Automatic Electric Meter Reading using Wifi
IRJET- Automatic Electric Meter Reading using WifiIRJET- Automatic Electric Meter Reading using Wifi
IRJET- Automatic Electric Meter Reading using Wifi
IRJET Journal
 
A major project report on Energy Efficient Infrared (IR) Based Home Automatio...
A major project report on Energy Efficient Infrared (IR) Based Home Automatio...A major project report on Energy Efficient Infrared (IR) Based Home Automatio...
A major project report on Energy Efficient Infrared (IR) Based Home Automatio...
Prasant Kumar
 
Sensors in IOT
Sensors in IOTSensors in IOT
Sensors in IOT
ATS SBGI MIRAJ
 
Electrical installation handbook part-1
Electrical installation handbook part-1Electrical installation handbook part-1
Electrical installation handbook part-1
Souvik Dutta
 
Bidirect visitor counter
Bidirect visitor counterBidirect visitor counter
Bidirect visitor counter
Electric&elctronics&engineeering
 
Automatic DC Fan using LM35 (english version)
Automatic DC Fan using LM35 (english version)Automatic DC Fan using LM35 (english version)
Automatic DC Fan using LM35 (english version)
Nurlatifa Haulaini
 

What's hot (20)

IRJET- Water Pump Controller using Arduino UNO
IRJET- Water Pump Controller using Arduino UNOIRJET- Water Pump Controller using Arduino UNO
IRJET- Water Pump Controller using Arduino UNO
 
IRJET - Speed Control of DC Motor by using IoT
IRJET -  	  Speed Control of DC Motor by using IoTIRJET -  	  Speed Control of DC Motor by using IoT
IRJET - Speed Control of DC Motor by using IoT
 
IRJET - Lie Detector using MATLAB, Arduino and Biomedical Sensors
IRJET -  	  Lie Detector using MATLAB, Arduino and Biomedical SensorsIRJET -  	  Lie Detector using MATLAB, Arduino and Biomedical Sensors
IRJET - Lie Detector using MATLAB, Arduino and Biomedical Sensors
 
Automatic Room Lights Controller Using Arduino & PIR Sensor
Automatic Room Lights Controller Using Arduino & PIR SensorAutomatic Room Lights Controller Using Arduino & PIR Sensor
Automatic Room Lights Controller Using Arduino & PIR Sensor
 
IRJET- Sensors implementation in AGV & IoT based data visualization over clie...
IRJET- Sensors implementation in AGV & IoT based data visualization over clie...IRJET- Sensors implementation in AGV & IoT based data visualization over clie...
IRJET- Sensors implementation in AGV & IoT based data visualization over clie...
 
IRJET- Design of a Portable Contact-Less Tachometer using Infrared Sensor for...
IRJET- Design of a Portable Contact-Less Tachometer using Infrared Sensor for...IRJET- Design of a Portable Contact-Less Tachometer using Infrared Sensor for...
IRJET- Design of a Portable Contact-Less Tachometer using Infrared Sensor for...
 
Major Project Synopsis Report on IoT based DC Motor Through a Web-site
Major Project Synopsis Report on IoT based DC Motor Through a Web-siteMajor Project Synopsis Report on IoT based DC Motor Through a Web-site
Major Project Synopsis Report on IoT based DC Motor Through a Web-site
 
Development of Android Controlled AC Dim Light
Development of Android Controlled AC Dim LightDevelopment of Android Controlled AC Dim Light
Development of Android Controlled AC Dim Light
 
IR BASED HOME AUTOMATION USING ARDUINO UNO
IR BASED HOME AUTOMATION USING ARDUINO UNOIR BASED HOME AUTOMATION USING ARDUINO UNO
IR BASED HOME AUTOMATION USING ARDUINO UNO
 
Home Automation System
Home Automation SystemHome Automation System
Home Automation System
 
IRJET- Testing the Induction Motor Voltage, Current, Torque, Speed, Power and...
IRJET- Testing the Induction Motor Voltage, Current, Torque, Speed, Power and...IRJET- Testing the Induction Motor Voltage, Current, Torque, Speed, Power and...
IRJET- Testing the Induction Motor Voltage, Current, Torque, Speed, Power and...
 
IRJET - Expansion of Logic Gates using Trainer
IRJET - Expansion of Logic Gates using TrainerIRJET - Expansion of Logic Gates using Trainer
IRJET - Expansion of Logic Gates using Trainer
 
REAL TIME AUTOMATION FOR COLLEGES
REAL TIME AUTOMATION  FOR COLLEGESREAL TIME AUTOMATION  FOR COLLEGES
REAL TIME AUTOMATION FOR COLLEGES
 
Automatic Room Light Controller Using Arduinom & PIR Sensor
Automatic Room Light Controller Using Arduinom & PIR SensorAutomatic Room Light Controller Using Arduinom & PIR Sensor
Automatic Room Light Controller Using Arduinom & PIR Sensor
 
IRJET- Automatic Electric Meter Reading using Wifi
IRJET- Automatic Electric Meter Reading using WifiIRJET- Automatic Electric Meter Reading using Wifi
IRJET- Automatic Electric Meter Reading using Wifi
 
A major project report on Energy Efficient Infrared (IR) Based Home Automatio...
A major project report on Energy Efficient Infrared (IR) Based Home Automatio...A major project report on Energy Efficient Infrared (IR) Based Home Automatio...
A major project report on Energy Efficient Infrared (IR) Based Home Automatio...
 
Sensors in IOT
Sensors in IOTSensors in IOT
Sensors in IOT
 
Electrical installation handbook part-1
Electrical installation handbook part-1Electrical installation handbook part-1
Electrical installation handbook part-1
 
Bidirect visitor counter
Bidirect visitor counterBidirect visitor counter
Bidirect visitor counter
 
Automatic DC Fan using LM35 (english version)
Automatic DC Fan using LM35 (english version)Automatic DC Fan using LM35 (english version)
Automatic DC Fan using LM35 (english version)
 

Similar to IRJET- Arduino Nano based All in One Meter

IOT BASED SMART ENERGY METER USING ARDUINO UNO
IOT BASED SMART ENERGY METER USING ARDUINO UNOIOT BASED SMART ENERGY METER USING ARDUINO UNO
IOT BASED SMART ENERGY METER USING ARDUINO UNO
IRJET Journal
 
IRJET - ATMEGA 328P based Smart Energy Meter Test Jig using PLX-DAX
IRJET - ATMEGA 328P based Smart Energy Meter Test Jig using PLX-DAXIRJET - ATMEGA 328P based Smart Energy Meter Test Jig using PLX-DAX
IRJET - ATMEGA 328P based Smart Energy Meter Test Jig using PLX-DAX
IRJET Journal
 
IoT-based Solar Energy Monitoring
IoT-based Solar Energy MonitoringIoT-based Solar Energy Monitoring
IoT-based Solar Energy Monitoring
IRJET Journal
 
Electricity Theft: Reason and Solution
Electricity Theft: Reason and SolutionElectricity Theft: Reason and Solution
Electricity Theft: Reason and Solution
IRJET Journal
 
WIRELESS POWER THEFT MONITORING SYSTEM IN POWER LINES
WIRELESS POWER THEFT MONITORING SYSTEM IN POWER LINESWIRELESS POWER THEFT MONITORING SYSTEM IN POWER LINES
WIRELESS POWER THEFT MONITORING SYSTEM IN POWER LINES
IRJET Journal
 
Report
ReportReport
Report
Rakesh Bali
 
Real-Time Load Monitoring By Microcontroller to Optimize Electric Power Utili...
Real-Time Load Monitoring By Microcontroller to Optimize Electric Power Utili...Real-Time Load Monitoring By Microcontroller to Optimize Electric Power Utili...
Real-Time Load Monitoring By Microcontroller to Optimize Electric Power Utili...
IJERA Editor
 
IRJET- V-I Characteristics Plotter
IRJET- V-I Characteristics PlotterIRJET- V-I Characteristics Plotter
IRJET- V-I Characteristics Plotter
IRJET Journal
 
IRJET- Monitoring and Measurement of Solar Parameters using IoT
IRJET- Monitoring and Measurement of Solar Parameters using IoTIRJET- Monitoring and Measurement of Solar Parameters using IoT
IRJET- Monitoring and Measurement of Solar Parameters using IoT
IRJET Journal
 
IRJET- Solar Powered Transmission Line Inspection Robot
IRJET- Solar Powered Transmission Line Inspection RobotIRJET- Solar Powered Transmission Line Inspection Robot
IRJET- Solar Powered Transmission Line Inspection Robot
IRJET Journal
 
IRJET- Arduino based Single Phase Fault Detection System using IoT
IRJET- Arduino based Single Phase Fault Detection System using IoTIRJET- Arduino based Single Phase Fault Detection System using IoT
IRJET- Arduino based Single Phase Fault Detection System using IoT
IRJET Journal
 
IRJET- Wireless Data Monitoring and Fault Identification by using IoT in Ther...
IRJET- Wireless Data Monitoring and Fault Identification by using IoT in Ther...IRJET- Wireless Data Monitoring and Fault Identification by using IoT in Ther...
IRJET- Wireless Data Monitoring and Fault Identification by using IoT in Ther...
IRJET Journal
 
IRJET- IoT based Industrial Level Sensor Data Acquisition & Monitoring
IRJET- IoT based Industrial Level Sensor Data Acquisition & MonitoringIRJET- IoT based Industrial Level Sensor Data Acquisition & Monitoring
IRJET- IoT based Industrial Level Sensor Data Acquisition & Monitoring
IRJET Journal
 
Power Factor Detection and Data Analytics
Power Factor Detection and Data AnalyticsPower Factor Detection and Data Analytics
Power Factor Detection and Data Analytics
IRJET Journal
 
IRJET- Three Phase Fault Analysis in Three Phase Distribution Line
IRJET- Three Phase Fault Analysis in Three Phase Distribution LineIRJET- Three Phase Fault Analysis in Three Phase Distribution Line
IRJET- Three Phase Fault Analysis in Three Phase Distribution Line
IRJET Journal
 
ENERGY METER READING SYSTEM WITH AUTOMATIC BILLING USING CLOUD
ENERGY METER READING SYSTEM WITH AUTOMATIC BILLING USING CLOUDENERGY METER READING SYSTEM WITH AUTOMATIC BILLING USING CLOUD
ENERGY METER READING SYSTEM WITH AUTOMATIC BILLING USING CLOUD
IRJET Journal
 
ENERGY METER READING SYSTEM WITH AUTOMATIC BILLING USING CLOUD
ENERGY METER READING SYSTEM WITH AUTOMATIC BILLING USING CLOUDENERGY METER READING SYSTEM WITH AUTOMATIC BILLING USING CLOUD
ENERGY METER READING SYSTEM WITH AUTOMATIC BILLING USING CLOUD
IRJET Journal
 
IRJET- Items’ Filling System Prototype with Sorting System According to the C...
IRJET- Items’ Filling System Prototype with Sorting System According to the C...IRJET- Items’ Filling System Prototype with Sorting System According to the C...
IRJET- Items’ Filling System Prototype with Sorting System According to the C...
IRJET Journal
 
IRJET - Footstep Power Generation using Piezo Electric Sensor
IRJET -  	  Footstep Power Generation using Piezo Electric SensorIRJET -  	  Footstep Power Generation using Piezo Electric Sensor
IRJET - Footstep Power Generation using Piezo Electric Sensor
IRJET Journal
 
IRJET- PLC Based Intelligent Control of Substation
IRJET- PLC Based Intelligent Control of SubstationIRJET- PLC Based Intelligent Control of Substation
IRJET- PLC Based Intelligent Control of Substation
IRJET Journal
 

Similar to IRJET- Arduino Nano based All in One Meter (20)

IOT BASED SMART ENERGY METER USING ARDUINO UNO
IOT BASED SMART ENERGY METER USING ARDUINO UNOIOT BASED SMART ENERGY METER USING ARDUINO UNO
IOT BASED SMART ENERGY METER USING ARDUINO UNO
 
IRJET - ATMEGA 328P based Smart Energy Meter Test Jig using PLX-DAX
IRJET - ATMEGA 328P based Smart Energy Meter Test Jig using PLX-DAXIRJET - ATMEGA 328P based Smart Energy Meter Test Jig using PLX-DAX
IRJET - ATMEGA 328P based Smart Energy Meter Test Jig using PLX-DAX
 
IoT-based Solar Energy Monitoring
IoT-based Solar Energy MonitoringIoT-based Solar Energy Monitoring
IoT-based Solar Energy Monitoring
 
Electricity Theft: Reason and Solution
Electricity Theft: Reason and SolutionElectricity Theft: Reason and Solution
Electricity Theft: Reason and Solution
 
WIRELESS POWER THEFT MONITORING SYSTEM IN POWER LINES
WIRELESS POWER THEFT MONITORING SYSTEM IN POWER LINESWIRELESS POWER THEFT MONITORING SYSTEM IN POWER LINES
WIRELESS POWER THEFT MONITORING SYSTEM IN POWER LINES
 
Report
ReportReport
Report
 
Real-Time Load Monitoring By Microcontroller to Optimize Electric Power Utili...
Real-Time Load Monitoring By Microcontroller to Optimize Electric Power Utili...Real-Time Load Monitoring By Microcontroller to Optimize Electric Power Utili...
Real-Time Load Monitoring By Microcontroller to Optimize Electric Power Utili...
 
IRJET- V-I Characteristics Plotter
IRJET- V-I Characteristics PlotterIRJET- V-I Characteristics Plotter
IRJET- V-I Characteristics Plotter
 
IRJET- Monitoring and Measurement of Solar Parameters using IoT
IRJET- Monitoring and Measurement of Solar Parameters using IoTIRJET- Monitoring and Measurement of Solar Parameters using IoT
IRJET- Monitoring and Measurement of Solar Parameters using IoT
 
IRJET- Solar Powered Transmission Line Inspection Robot
IRJET- Solar Powered Transmission Line Inspection RobotIRJET- Solar Powered Transmission Line Inspection Robot
IRJET- Solar Powered Transmission Line Inspection Robot
 
IRJET- Arduino based Single Phase Fault Detection System using IoT
IRJET- Arduino based Single Phase Fault Detection System using IoTIRJET- Arduino based Single Phase Fault Detection System using IoT
IRJET- Arduino based Single Phase Fault Detection System using IoT
 
IRJET- Wireless Data Monitoring and Fault Identification by using IoT in Ther...
IRJET- Wireless Data Monitoring and Fault Identification by using IoT in Ther...IRJET- Wireless Data Monitoring and Fault Identification by using IoT in Ther...
IRJET- Wireless Data Monitoring and Fault Identification by using IoT in Ther...
 
IRJET- IoT based Industrial Level Sensor Data Acquisition & Monitoring
IRJET- IoT based Industrial Level Sensor Data Acquisition & MonitoringIRJET- IoT based Industrial Level Sensor Data Acquisition & Monitoring
IRJET- IoT based Industrial Level Sensor Data Acquisition & Monitoring
 
Power Factor Detection and Data Analytics
Power Factor Detection and Data AnalyticsPower Factor Detection and Data Analytics
Power Factor Detection and Data Analytics
 
IRJET- Three Phase Fault Analysis in Three Phase Distribution Line
IRJET- Three Phase Fault Analysis in Three Phase Distribution LineIRJET- Three Phase Fault Analysis in Three Phase Distribution Line
IRJET- Three Phase Fault Analysis in Three Phase Distribution Line
 
ENERGY METER READING SYSTEM WITH AUTOMATIC BILLING USING CLOUD
ENERGY METER READING SYSTEM WITH AUTOMATIC BILLING USING CLOUDENERGY METER READING SYSTEM WITH AUTOMATIC BILLING USING CLOUD
ENERGY METER READING SYSTEM WITH AUTOMATIC BILLING USING CLOUD
 
ENERGY METER READING SYSTEM WITH AUTOMATIC BILLING USING CLOUD
ENERGY METER READING SYSTEM WITH AUTOMATIC BILLING USING CLOUDENERGY METER READING SYSTEM WITH AUTOMATIC BILLING USING CLOUD
ENERGY METER READING SYSTEM WITH AUTOMATIC BILLING USING CLOUD
 
IRJET- Items’ Filling System Prototype with Sorting System According to the C...
IRJET- Items’ Filling System Prototype with Sorting System According to the C...IRJET- Items’ Filling System Prototype with Sorting System According to the C...
IRJET- Items’ Filling System Prototype with Sorting System According to the C...
 
IRJET - Footstep Power Generation using Piezo Electric Sensor
IRJET -  	  Footstep Power Generation using Piezo Electric SensorIRJET -  	  Footstep Power Generation using Piezo Electric Sensor
IRJET - Footstep Power Generation using Piezo Electric Sensor
 
IRJET- PLC Based Intelligent Control of Substation
IRJET- PLC Based Intelligent Control of SubstationIRJET- PLC Based Intelligent Control of Substation
IRJET- PLC Based Intelligent Control of Substation
 

More from IRJET Journal

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
IRJET Journal
 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
IRJET Journal
 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
IRJET Journal
 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil Characteristics
IRJET Journal
 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
IRJET Journal
 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
IRJET Journal
 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
IRJET Journal
 
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
IRJET Journal
 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADAS
IRJET Journal
 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
IRJET Journal
 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
IRJET Journal
 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
IRJET Journal
 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare System
IRJET Journal
 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridges
IRJET Journal
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web application
IRJET Journal
 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
IRJET Journal
 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
IRJET Journal
 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
IRJET Journal
 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
IRJET Journal
 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
IRJET Journal
 

More from IRJET Journal (20)

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil Characteristics
 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
 
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADAS
 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare System
 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridges
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web application
 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
 

Recently uploaded

ISPM 15 Heat Treated Wood Stamps and why your shipping must have one
ISPM 15 Heat Treated Wood Stamps and why your shipping must have oneISPM 15 Heat Treated Wood Stamps and why your shipping must have one
ISPM 15 Heat Treated Wood Stamps and why your shipping must have one
Las Vegas Warehouse
 
Engine Lubrication performance System.pdf
Engine Lubrication performance System.pdfEngine Lubrication performance System.pdf
Engine Lubrication performance System.pdf
mamamaam477
 
Harnessing WebAssembly for Real-time Stateless Streaming Pipelines
Harnessing WebAssembly for Real-time Stateless Streaming PipelinesHarnessing WebAssembly for Real-time Stateless Streaming Pipelines
Harnessing WebAssembly for Real-time Stateless Streaming Pipelines
Christina Lin
 
New techniques for characterising damage in rock slopes.pdf
New techniques for characterising damage in rock slopes.pdfNew techniques for characterising damage in rock slopes.pdf
New techniques for characterising damage in rock slopes.pdf
wisnuprabawa3
 
Literature Review Basics and Understanding Reference Management.pptx
Literature Review Basics and Understanding Reference Management.pptxLiterature Review Basics and Understanding Reference Management.pptx
Literature Review Basics and Understanding Reference Management.pptx
Dr Ramhari Poudyal
 
IEEE Aerospace and Electronic Systems Society as a Graduate Student Member
IEEE Aerospace and Electronic Systems Society as a Graduate Student MemberIEEE Aerospace and Electronic Systems Society as a Graduate Student Member
IEEE Aerospace and Electronic Systems Society as a Graduate Student Member
VICTOR MAESTRE RAMIREZ
 
学校原版美国波士顿大学毕业证学历学位证书原版一模一样
学校原版美国波士顿大学毕业证学历学位证书原版一模一样学校原版美国波士顿大学毕业证学历学位证书原版一模一样
学校原版美国波士顿大学毕业证学历学位证书原版一模一样
171ticu
 
Comparative analysis between traditional aquaponics and reconstructed aquapon...
Comparative analysis between traditional aquaponics and reconstructed aquapon...Comparative analysis between traditional aquaponics and reconstructed aquapon...
Comparative analysis between traditional aquaponics and reconstructed aquapon...
bijceesjournal
 
BPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdf
BPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdfBPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdf
BPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdf
MIGUELANGEL966976
 
Eric Nizeyimana's document 2006 from gicumbi to ttc nyamata handball play
Eric Nizeyimana's document 2006 from gicumbi to ttc nyamata handball playEric Nizeyimana's document 2006 from gicumbi to ttc nyamata handball play
Eric Nizeyimana's document 2006 from gicumbi to ttc nyamata handball play
enizeyimana36
 
ML Based Model for NIDS MSc Updated Presentation.v2.pptx
ML Based Model for NIDS MSc Updated Presentation.v2.pptxML Based Model for NIDS MSc Updated Presentation.v2.pptx
ML Based Model for NIDS MSc Updated Presentation.v2.pptx
JamalHussainArman
 
basic-wireline-operations-course-mahmoud-f-radwan.pdf
basic-wireline-operations-course-mahmoud-f-radwan.pdfbasic-wireline-operations-course-mahmoud-f-radwan.pdf
basic-wireline-operations-course-mahmoud-f-radwan.pdf
NidhalKahouli2
 
Computational Engineering IITH Presentation
Computational Engineering IITH PresentationComputational Engineering IITH Presentation
Computational Engineering IITH Presentation
co23btech11018
 
哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样
哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样
哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样
insn4465
 
官方认证美国密歇根州立大学毕业证学位证书原版一模一样
官方认证美国密歇根州立大学毕业证学位证书原版一模一样官方认证美国密歇根州立大学毕业证学位证书原版一模一样
官方认证美国密歇根州立大学毕业证学位证书原版一模一样
171ticu
 
Presentation of IEEE Slovenia CIS (Computational Intelligence Society) Chapte...
Presentation of IEEE Slovenia CIS (Computational Intelligence Society) Chapte...Presentation of IEEE Slovenia CIS (Computational Intelligence Society) Chapte...
Presentation of IEEE Slovenia CIS (Computational Intelligence Society) Chapte...
University of Maribor
 
Textile Chemical Processing and Dyeing.pdf
Textile Chemical Processing and Dyeing.pdfTextile Chemical Processing and Dyeing.pdf
Textile Chemical Processing and Dyeing.pdf
NazakatAliKhoso2
 
132/33KV substation case study Presentation
132/33KV substation case study Presentation132/33KV substation case study Presentation
132/33KV substation case study Presentation
kandramariana6
 
Recycled Concrete Aggregate in Construction Part III
Recycled Concrete Aggregate in Construction Part IIIRecycled Concrete Aggregate in Construction Part III
Recycled Concrete Aggregate in Construction Part III
Aditya Rajan Patra
 
CSM Cloud Service Management Presentarion
CSM Cloud Service Management PresentarionCSM Cloud Service Management Presentarion
CSM Cloud Service Management Presentarion
rpskprasana
 

Recently uploaded (20)

ISPM 15 Heat Treated Wood Stamps and why your shipping must have one
ISPM 15 Heat Treated Wood Stamps and why your shipping must have oneISPM 15 Heat Treated Wood Stamps and why your shipping must have one
ISPM 15 Heat Treated Wood Stamps and why your shipping must have one
 
Engine Lubrication performance System.pdf
Engine Lubrication performance System.pdfEngine Lubrication performance System.pdf
Engine Lubrication performance System.pdf
 
Harnessing WebAssembly for Real-time Stateless Streaming Pipelines
Harnessing WebAssembly for Real-time Stateless Streaming PipelinesHarnessing WebAssembly for Real-time Stateless Streaming Pipelines
Harnessing WebAssembly for Real-time Stateless Streaming Pipelines
 
New techniques for characterising damage in rock slopes.pdf
New techniques for characterising damage in rock slopes.pdfNew techniques for characterising damage in rock slopes.pdf
New techniques for characterising damage in rock slopes.pdf
 
Literature Review Basics and Understanding Reference Management.pptx
Literature Review Basics and Understanding Reference Management.pptxLiterature Review Basics and Understanding Reference Management.pptx
Literature Review Basics and Understanding Reference Management.pptx
 
IEEE Aerospace and Electronic Systems Society as a Graduate Student Member
IEEE Aerospace and Electronic Systems Society as a Graduate Student MemberIEEE Aerospace and Electronic Systems Society as a Graduate Student Member
IEEE Aerospace and Electronic Systems Society as a Graduate Student Member
 
学校原版美国波士顿大学毕业证学历学位证书原版一模一样
学校原版美国波士顿大学毕业证学历学位证书原版一模一样学校原版美国波士顿大学毕业证学历学位证书原版一模一样
学校原版美国波士顿大学毕业证学历学位证书原版一模一样
 
Comparative analysis between traditional aquaponics and reconstructed aquapon...
Comparative analysis between traditional aquaponics and reconstructed aquapon...Comparative analysis between traditional aquaponics and reconstructed aquapon...
Comparative analysis between traditional aquaponics and reconstructed aquapon...
 
BPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdf
BPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdfBPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdf
BPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdf
 
Eric Nizeyimana's document 2006 from gicumbi to ttc nyamata handball play
Eric Nizeyimana's document 2006 from gicumbi to ttc nyamata handball playEric Nizeyimana's document 2006 from gicumbi to ttc nyamata handball play
Eric Nizeyimana's document 2006 from gicumbi to ttc nyamata handball play
 
ML Based Model for NIDS MSc Updated Presentation.v2.pptx
ML Based Model for NIDS MSc Updated Presentation.v2.pptxML Based Model for NIDS MSc Updated Presentation.v2.pptx
ML Based Model for NIDS MSc Updated Presentation.v2.pptx
 
basic-wireline-operations-course-mahmoud-f-radwan.pdf
basic-wireline-operations-course-mahmoud-f-radwan.pdfbasic-wireline-operations-course-mahmoud-f-radwan.pdf
basic-wireline-operations-course-mahmoud-f-radwan.pdf
 
Computational Engineering IITH Presentation
Computational Engineering IITH PresentationComputational Engineering IITH Presentation
Computational Engineering IITH Presentation
 
哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样
哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样
哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样
 
官方认证美国密歇根州立大学毕业证学位证书原版一模一样
官方认证美国密歇根州立大学毕业证学位证书原版一模一样官方认证美国密歇根州立大学毕业证学位证书原版一模一样
官方认证美国密歇根州立大学毕业证学位证书原版一模一样
 
Presentation of IEEE Slovenia CIS (Computational Intelligence Society) Chapte...
Presentation of IEEE Slovenia CIS (Computational Intelligence Society) Chapte...Presentation of IEEE Slovenia CIS (Computational Intelligence Society) Chapte...
Presentation of IEEE Slovenia CIS (Computational Intelligence Society) Chapte...
 
Textile Chemical Processing and Dyeing.pdf
Textile Chemical Processing and Dyeing.pdfTextile Chemical Processing and Dyeing.pdf
Textile Chemical Processing and Dyeing.pdf
 
132/33KV substation case study Presentation
132/33KV substation case study Presentation132/33KV substation case study Presentation
132/33KV substation case study Presentation
 
Recycled Concrete Aggregate in Construction Part III
Recycled Concrete Aggregate in Construction Part IIIRecycled Concrete Aggregate in Construction Part III
Recycled Concrete Aggregate in Construction Part III
 
CSM Cloud Service Management Presentarion
CSM Cloud Service Management PresentarionCSM Cloud Service Management Presentarion
CSM Cloud Service Management Presentarion
 

IRJET- Arduino Nano based All in One Meter

  • 1. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 06 Issue: 04 | Apr 2019 www.irjet.net p-ISSN: 2395-0072 © 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 1850 ARDUINO NANO BASED ALL IN ONE METER K. Sai Rakesh1, P. SriRaghavendra2, R.S.V.Shivaram3, T.ch.Bhanuteja4 1,2,3,4Student, Pragati Engineering College, Surampalem, Andhra Pradesh, INDIA ---------------------------------------------------------------------***---------------------------------------------------------------------- Abstract - The main objective of this project is to build an Arduino nano based All in one meter, a device that canbeused to measure the voltage, current and the power consumed by a load. There are number of ways that you can implement the Arduino nano based all in one meter Project. One of the easy ways is to interface a Voltage Sensor and a Current Sensor with Arduino, measure the voltage and current values and finally with some mathematics, you can calculatethePower in Watts. The Sensor Part of the circuit is responsible for measuring the Voltage across the load and Current through the load. Both these values, which are analog in nature, are given to the Arduino to its ADC. Arduino converts these values to digital values and makes a few calculations as displays the results on the LCD. Key Words: Microcontroller,Sensorunit,AurdinoBoard, Wattmeter, Measuring Instruments. 1. INTRODUCTION As electrical engineers, we always depend upon meters/instruments to measure and analyse the working of a circuit. Starting with a simple multimeter to a complex power quality analysers or DSOs everything has their own unique applications. Most of these meters are readily available and can be purchased based on the parameters to be measured and their accuracy. But sometimes we might end up in a situation where we need to build our own meters. Say for instance you are working on a solar PV cell and you would like to calculate the power consumption of your load, in such scenarios we can build our own Wattmeter using a simple microcontroller platform like Arduino. 1.1 Measuring Instruments: A measuring instrument is a device for measuring a physical quantity. In the physical sciences, quality assurance, and engineering, measurement is the activity of obtaining and comparing physical quantities of real-world objects and events. Established standard objects and events are used as units, and the process of measurement gives a number relating the item under study and the referenced unit of measurement. Measuring instruments, and formal test methods which define the instrument's use, are the means by which these relations of numbers are obtained. All measuring instruments are subject to varying degrees of instrument error and measurement uncertainty. These instruments may range from simple objects such as rulers and stopwatches to electron microscopesandparticle accelerators. Virtual instrumentation is widely used in the development of modern measuring instruments. Fig -1: Classification of Instruments 1.2 Ammeter The meter uses for measuring the current is known as the ammeter. The current is the flow of electrons whose unit is ampere. Hence the instrument which measures the flows of current in ampere is known as ampere meter or ammeter. The ideal ammeter has zero internal resistance. But practically the ammeter has small internal resistance. The measuring range of the ammeter depends on the value of resistance. The ammeter is connected in series with the circuit so that the whole electrons of measurand current passes through the ammeter. The power loss occurs in ammeter because of the measurand current and their internal resistance. The ammeter circuit has low resistance so that the small voltage drop occurs in the circuit. Fig -2: Ammeter 1.3 Aurdino In default the Arduino is not equipped with a display to visualize measuring-data, for example from your
  • 2. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 06 Issue: 04 | Apr 2019 www.irjet.net p-ISSN: 2395-0072 © 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 1851 temperature or your pressure Sensor. If you want to get the data shown you need a PC, printing the data totheconsole or mounting a display directly to the Arduino. So there is no simple way to WIRELESSLY visualizemeasuring-data.Inthis intractableFig.2will showhowto transfer measuredSensor- data in real-time from your Arduino-Microcontroller to your Android-Smartphone via Bluetooth. Fig -3: Bluetooth HC-05 and Arduino 2. PROBLEM FORMULATION It is difficult or sometimes even impossible to measure current, voltage and power at a time with ordinary multimeters and watt meters. It is very expensive to measure low power ratings with normal wattmeter and multimeter To overcome these disadvantages we are going to design a special type of meter with Arduino nano microcontroller with the help of the Arduino Microcontroller we can measure voltage current and power at a time. 2.1 Existing Technology The entire project can be divided into three basic blocks; 1) Power Sensor Unit 2) Processor Unit 3) Display Unit The Power Sensor Unit allows the current to flow through a device whose power consumption needs to be measured. The Sensor Unit produces two voltages, one is the Voltage output from the power supply and another one is a voltage which ranges from 0 to 5V. The difference between these two voltages is proportional to the amount of Current flowing through the Sensor unit. The ProcessorUnitcantake two input voltages both in the range of 0 to 5V. This unit takes the Sensor Unit’s output as input voltages and usesthe ADC to read these voltages. An Algorithm is then applied to calculate the Power consumptionofthedevice.Theunitthen sends a 4bit data to the Display Unit to display the power consumption in Watts. The Display Unit takes the 4bit data from the Processor Unit and produces a 16*2 display for the current consumption of the device. Fig -4: Block diagram 2.2 Proposed Technology The circuit is designed to fit into systems operatingbetween 0-24V with a current range of 0-1A keeping in mind the specification of small applications. But you can easilyextend the range once you understand the working of the circuit. The underlying principle behind the circuitistomeasurethe voltage across the load and current through it to calculate the power consumes by it. All the measured values will be displayed in a 16*2 Alphanumeric LCD. For ease of understanding the arduino wattmetercircuitissplitinto two units. The upper part of the circuit is the measuring unit and the lower part of the circuit is the computation and display unit. 3. Hardware Implementation The measuring unit consists of a potential divider to help us measure the voltage and a shut resistorwitha Non-Inverting Op-amp is used to help us measure the current through the circuit. The output voltage of a potential divider can be calculated using the below formulae. The same be used to decide the value of your resistors, you can use our online calculator to calculate value of resistor if you are re- designing the circuit. Next we have to measure the current through the LOAD. As we know microcontrollers can read only analog voltage, so we need to somehow convert the value of current to voltage. It can be done by simply addinga resistor (shunt resistor) in the path which according to Ohm’s law will drop a value of voltage across it that is proportional to the current flowing through it. The value of this voltage drop will be very less so we use an op-amp to amplify it. The circuit for the same is shown below. Here in our case the value of Rf is 20k and the value of Rin is 1k which gives us a gian value of 21. The amplified voltageform the Op-amp is then given to a RC filter with resistor 1k and a capacitor 0.1uF to filter any noise that is coupled. Finally the voltage is then fed to the Arduino analog pin.
  • 3. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 06 Issue: 04 | Apr 2019 www.irjet.net p-ISSN: 2395-0072 © 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 1852 Fig -5: Schematic diagram 4.1 Working The Arduino Nano has a number of facilities for communicating with a computer, another Arduino, or other microcontrollers. The ATmega328 provide UART TTL (5V) serial communication, which is available on digital pins 0 (RX) and 1 (TX). An FTDI FT232RL on the board channels this serial communication over USB and the FTDI drivers (included with the Arduino software) provide a virtual com port to software on the computer. The Arduino software includes a serial monitor which allows simpletextual data to be sent to and from the Arduino board. The RX and TX LEDs on the board will flash when data is being transmitted via the FTDI chip and USB connection to the computer (but not for serial communication on pins 0 and 1). A SoftwareSerial library allows for serial communication on any oftheNano's digital pins. Fig -6: Arduino nano 4.2 Results This kit explains about the project “Arduino Nano All in One Meter” .In this project when supply is givenarduinoandLCD are powered up. Power supply is adjusted to 24v with the help of RPS. When the load is connected voltage, currentand power values are displayed on the LCD. Fig -7: Arduino nano all in one meter 5. CONCLUSION This is a project based on Arduino board which can measures the voltage, currentandpowerconsumptionofthe devices at a time. When we connect this wattmeter on to a device which is in operation, the 16*2 LCD displays its voltage value in volts, current value in amperes and power consumption value in Watts. The project uses an Arduino pro mini board whose ADC feature is used along with the concept of Ohm’s law and Voltage Divider circuit to develop this Wattmeter. This project is cost friendly and have less complexity. This project gives more accurate results for the parameters. 6. FUTURE SCOPE This Arduino based all in one meter project has many more upgrades that can be added to increase the performance to auto data logging, plotting graph, notifying over voltage or over current situations etc. Also we can add other parameters like energy , power factor etc by changing the source code. By changing the component ratings in the circuit we can measure high loads. REFERENCES 1) HernandoBarragán(2016-01-01). "TheUntoldHistoryof Arduino" 2) “Programming Arduino”, book by “Simon Monk” 3) https://circuitdigest.com/microcontroller- projects/arduino-wattmeter-to-measure-voltage- current-power-consumption 4) https://meettechniek.info/diy-instruments/arduino- wattmeter.html 5) https://www.electronicshub.org/arduino-wattmeter/