SlideShare a Scribd company logo
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395 -0056
Volume: 04 Issue: 06 | June -2017 www.irjet.net p-ISSN: 2395-0072
© 2017, IRJET | Impact Factor value: 5.181 | ISO 9001:2008 Certified Journal | Page 1525
A REAL-TIME IOT IMPLEMENTATION FOR EFFICIENT ENERGY
CONSUMPTION
1J.Surya predeepa , 2Dr.R.Perumalraja,
PG student1 , Professor & Head 2
1,2Department of Information and Technology,
Velammal College of Engineering & Technology, Madurai
-----------------------------------------------------------------------***-----------------------------------------------------------------------
Abstract-In this modern era, electricity is very important to
support our daily life. But today most of the people suffer due
to increasing electricity bill. The existing utility system only
provides feedback at the end of the month in the form of bill.
So we can’t identify which device consumes more energy. In
this paper we have proposed an effective implementation of
internet of things (IoT) used for efficient power consumption
which in turn reduces the electricity bill gradually. All
electronic appliances in home/office continuously report their
usage patterns and energy consumed to the server via
microcontrollers. A mobile app is designed to trigger an alarm
whenever the user consumes more power through any
electronic device and the user is able to continuously monitor
the power consumption and charge of every device connected.
Fuzzy concept is used to design a predictive model for every
device that controls the device being over used. User is always
kept alerted of power consumption through every device. This
leads to a efficient power consumption and reduced current
bills.
Keywords: Internet of Things, energy efficiency, usage
pattern, mobile application, fuzzy concept.
1. INTRODUCTION
Electricity consumption by households is largely affected by
household income and appliances owned. Electricity bill is a
recurrent monthly expenditure for households and the
demand for electricity to residential consumers is generally
inelastic. However, the percentage of household income
spent on energy is one of the indicators of energy poverty.
[5]. Energy consumption varies for commercial building due
to several factors such as electrical appliance usage,
electrical appliance type, management, etc. Due to the
advancement in technology, there are new emergence
appliances that are of high efficiency and have less energy
consumption. Energy saving is of great important instead of
its wastage, as utilizing the energy efficiently reduces the
cost of energy [6]. Several electronic appliances in
home/office, they consume lots of energy. So it increases the
electricity bill. One way of reducing these costs is to monitor,
in real time, how much power is being consumed and from
these data make informed decisions about how to manage
the electrical devices being powered. A system that can give
users an estimate of how much energy is being, has been,
and might be consumed will allow them to adjust their habits
and lower the costs.
The systematic electronic monitoring of energy
consumption of every electronic appliance in home can be
achieved with the help of Internet of things (IoT). Its major
contribution is its proposed solution that is based on
Arduino MEGA microcontroller. Arduino MEGA
microcontroller will capture the information such as time
stamp, the energy value consumed(in watts), hours used,
number of times the device is switched on in a particular
month (that finds how frequently the device is used) and
give the values to server through RF transceiver. The
measured energy use of individual appliances can be
displayed through a mobile app. The mobile app is designed
to retrieve the information from the server and also
designed in such a way that it should alert the user through
an alert message when his tariff plan is about to change due
to over energy consumption.
2. METHODOLOGY
Our approach allows user to inexpensively Monitoring
energy use and through this system user can easily
understand their usage patterns and adopt their behavior to
reduce their energy consumption and costs.
 Several electronic appliances are used every day
that consumes lot of energy. To enable internet
access to all electronic device in home we should
attach to them a microcontroller which features
Ethernet/WiFi interface and it should be compatible
with Arduino MEGA.
 Whenever a new energy event is detected (an
electronic device is switched on) the microcontroller
in arduino board captures the information such as
time stamp, the energy value consumed(in watts),
hours used, number of times the device is switched
on in a particular month (that finds how frequently
the device is used)
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395 -0056
Volume: 04 Issue: 06 | June -2017 www.irjet.net p-ISSN: 2395-0072
© 2017, IRJET | Impact Factor value: 5.181 | ISO 9001:2008 Certified Journal | Page 1526
 Microcontroller converts the collected information
as a JSON (Java Script Object Notation since it is
ease for data exchange in any format) and transmits
it to the server. Server is responsible to carry out the
process of storing the JSON object as a document
inside a SQL database. (Note : CouchDB is much
better since it itself acts as a HTTP server that
supports CRUD operations in JSON objects)
Sample JSON Object for Air Conditioner
“device_id” : “Room 1” “device_type” : “Air Conditioner”
“date_time” : “2016-11-04T10:40:54”
“consumotuon_time_in_secs” : 4500
“energy_consumption_inWh” : xxx
Units = power consumed in watts * time in secs / 3600000
Units = power consumed in watts * time in hours / 1000
For eg : AC works for 14 hours. During 14 hours compressor
works for just 4 hours and fan works for 10 hours
Energy Consumption part 1 (Assume Compressor consumes
1500w) = 1500 * 4/1000 = 6 units
Energy Consumption part 1 (Assume fan consumes 80w) =
80 * 4/1000 = 0.8 units Total units consumed = 6.8 units
1. Mobile app has to be designed in such a way that it
should retrieve the information from the server and
compute all the above calculations. It should send those
information to the user via text message for every single
event (every time when a connected device is used)
Figure 1 Design architecture
2. Now the user is able to view the energy consumed by
individual devices. Mobile app should be designed in such
a way that it should alert the user through a alert message
when his tariff plan is about to change due to over energy
consumption.
For eg : If a person is consuming 90 units an alert message is
thrown stating that his tariff plan is about to change after
100 units. (after 100 units rupees/unit increases to 6.05
from 5.45 form the very first unit. Similarly for 200 units it
goes to 6.75)
So for every tariff change the user is alerted with a message.
3. Fuzzy logic is introduced here to design a predictive
model. Based on previous database each device is set to a
maximum energy consumption (MEC) value. User is
allowed to fix his range of units to be consumed overall.
For eg: if a user is fixing his electricity bill should not exceed
more than 5000 then the value of MEC is fixed accordingly. If
the device crosses the MEC value, then the user is triggered
with an alarm every time when the device is switched on.
This Model allows the customer to manage his power
consumption and electricity bills more efficiently.
3. IMPLEMENTATION
The followings are the steps of the implementation of
our work.
1. First, we acquire the Arduino board and CT sensor. We
program C code to retrieve the energy usage from the
appliance device in minute interval. Initially, we tested
our system by connected the Arduino board with a PC as
an appliance workload to make sure that the C code is
performed properly.
2. Second, we programmed Android application to connect
to the server that can retrieve data of power
consumption from the server and display it on Android
system. Also alert the user through an alert message
when his tariff plan is about to change due to over
energy consumption.
3. Third, the user interfaces on the Android screen are
designed and created for the user’s needs.
4. Fourth, couch database is designed and created for
keeping the historical records of the energy usage for
each appliance device.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395 -0056
Volume: 04 Issue: 06 | June -2017 www.irjet.net p-ISSN: 2395-0072
© 2017, IRJET | Impact Factor value: 5.181 | ISO 9001:2008 Certified Journal | Page 1527
Figure 2 Block diagram of power consumption
Monitoring
Structure of android application
Power consumption monitoring (PCM) application is
developed using android studio. The PCM android
application consists of each electronic appliance electricity
usage details that is how much power consumed and charges
calculated for consumed unit of power.
It also consists of alert system whenever the tariff plan
changed, it will send the message to the user based on units
of electricity usage. Using this application we can retrieve the
data stored in server.
Figure 3 Structure of PCM application
Figure 4 Snapshot of mobile app
4. CONCLUSION
This paper presents about the development of a system
called real time energy consumption monitoring based on
IOT. This system consists of two parts. The first part is
database store power consumption data recorded by the
Arduino MEGA iBoard pro. The second part is an android
application used to view and monitor the power
consumption of individual electronic appliance at home and
their respective cost. It also used for alert the user when the
maximum usage of electricity is reached.
ACKNOWLEDGMENT
I would like to pay special thanks, warmth and appreciation
to my guide Dr.R.Perumalraja, who made my research
successful an assisted me at every point to appreciate my
goal.
REFERENCES
[1] Mohammed Abo-Zahhad, Sabah M. Ahmed,
Mohammed Farrag, Mohammed F. A.Ahmed and
Abdelhay Ali “Design and Implementation of
Building Energy Monitoring and Management
System based on Wireless Sensor Networks” 978-1
4673-9971-5/15/$31.00 ©2015 IEEE.
[2] Edwin Chobot, Daniel Newby, Renee Chandler,
Nusaybah Abu-Mulaweh, “Design and
Implementation of A Wireless Sensor and Actuator
Network For Energy Measurement and Control
At Home” International Journal of Embedded
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395 -0056
Volume: 04 Issue: 06 | June -2017 www.irjet.net p-ISSN: 2395-0072
© 2017, IRJET | Impact Factor value: 5.181 | ISO 9001:2008 Certified Journal | Page 1528
Systems and Applications (IJESA) Vol.3, No.1, March
2013.
[3] Abdul Basit, Guftaar Ahmad Sardar Sidhu, Anzar
Mahmood, Member, IEEE, And Feifei Gao, Senior
Member, IEEE “Efficient and Autonomous Energy
Management Techniques for the Future Smart
Homes” IEEE Transactions On Smart Grid.
[4] Alessandro Ghelli, Hani Hagras, Fellow, IEEE, and
Ghadah Aldabbagh, Member, IEEE “A Fuzzy Logic-
Based Retrofit System for Enabling Smart Energy-
Efficient Electric Cookers” IEEE Transactions on
Fuzzy Systems, Vol. 23, No. 6, December 2015.
[5] Chen Li, T. Logenthiran, W. L. Woo,
“ Development of Mobile Application for Smart Home
Energy Management: iSHome” 978-1-5090-0128-
6/16/$31.00 ©2016 IEEE.
[6] Abubakar Kabir Aliyu1*, Abba Lawan Bukar2, Jamilu
Garba Ringim3, Abubakar Musa “An Approach to
Energy Saving and Cost of Energy Reduction
Using an Improved Efficient Technology” Open
Journal of Energy Efficiency, 2015, 4, 61-68
Published Online December 2015 in SciRes.
http://www.scirp.org/journal/ojee
http://dx.doi.org/10.4236/ojee.2015.44007.
[7] M. Victoria Moreno_ and Antonio F. Skarmeta
“Exploiting IoT-based Sensed Data in Smart
Buildings to Model its Energy Consumption” IEEE
ICC 2015 SAC - Internet of Things.
[8] O. M. Longe, K. Ouahada, S. Rimer, H. Zhu, H. C.
Ferreira “Effective Energy Consumption Scheduling
in Smart Homes” 978-1-4799-7498-6/15/$31.00
©2015 IEEE.
[9] Dariush Shahgoshtasbi, Student Member, IEEE, and
Mo M. Jamshidi, Fellow, IEEE “A New Intelligent
Neuro–Fuzzy Paradigm for Energy-Efficient Homes”
IEEE Systems Journal, Vol. 8, No. 2, June 2014.
[10] Darshan Iyer N, Dr.K.A.Radhakrishna Rao “IoT Based
Electricity Energy Meter Reading, Theft Detection
and Disconnection using PLC modem and an
optimization” International Journal of Advanced
Research in Electrical, Electronics and
Instrumentation Engineering Vol.4, Issues 7, July
2015.

More Related Content

PDF
Easy Metering of Energy Meter using Internet of things Platform
PDF
IOT-ENABLED GREEN CAMPUS ENERGY MANAGEMENT SYSTEM
PDF
IRJET- Automated Energy Metering System
PDF
The International Journal of Engineering and Science (The IJES)
PDF
IRJET- Design and Implementation of Prepaid Energy Meter and Data Acquisi...
PDF
IRJET- Energy Meter Reading over Internet
PDF
IRJET- IoT based Energy Management System Including Renewable Energy using Ar...
PDF
An IOT based smart metering development for energy management system
Easy Metering of Energy Meter using Internet of things Platform
IOT-ENABLED GREEN CAMPUS ENERGY MANAGEMENT SYSTEM
IRJET- Automated Energy Metering System
The International Journal of Engineering and Science (The IJES)
IRJET- Design and Implementation of Prepaid Energy Meter and Data Acquisi...
IRJET- Energy Meter Reading over Internet
IRJET- IoT based Energy Management System Including Renewable Energy using Ar...
An IOT based smart metering development for energy management system

What's hot (19)

PDF
Peak load scheduling in smart grid using cloud computing
PDF
IRJET- IoT based Smart Energy Meter
PDF
IRJET- Smart Wireless Electronic Energy Meter
PDF
IRJET- Design and Implement Mechanism for Efficient Energy Meter using IoT
PDF
IRJET - IoT based Energy Monitoring and Management System for Smart Home usin...
PDF
IRJET- Measuring Electricity Consumption of Appliances and Monitoring the...
PDF
IRJET- IoT based Smart Electricity Meter and Billing System
PDF
IRJET- Iot Based Smart Meter
PDF
IoT Based Control and Monitoring of Smart Grid and Power Theft Detection by L...
PDF
Power Consumption Alert System
PDF
Design and Implementation of IOT Based Smart Power Monitoring and Management ...
PDF
Iot based home automation system for electricity usage
PDF
Instant Access of Power Usage through IP Enabled Electronic Power Meter
PDF
PDF
H021201049058
PDF
IRJET- A Remotely Controlled Home Automation System for Energy Saving
PDF
IRJET- Smart Energy Metering based on IoT and Pocket Picking using Arduino an...
PDF
IRJET - Smart Home with Power Consumed Statistics using Android Application
PDF
Smart Home Energy Management
Peak load scheduling in smart grid using cloud computing
IRJET- IoT based Smart Energy Meter
IRJET- Smart Wireless Electronic Energy Meter
IRJET- Design and Implement Mechanism for Efficient Energy Meter using IoT
IRJET - IoT based Energy Monitoring and Management System for Smart Home usin...
IRJET- Measuring Electricity Consumption of Appliances and Monitoring the...
IRJET- IoT based Smart Electricity Meter and Billing System
IRJET- Iot Based Smart Meter
IoT Based Control and Monitoring of Smart Grid and Power Theft Detection by L...
Power Consumption Alert System
Design and Implementation of IOT Based Smart Power Monitoring and Management ...
Iot based home automation system for electricity usage
Instant Access of Power Usage through IP Enabled Electronic Power Meter
H021201049058
IRJET- A Remotely Controlled Home Automation System for Energy Saving
IRJET- Smart Energy Metering based on IoT and Pocket Picking using Arduino an...
IRJET - Smart Home with Power Consumed Statistics using Android Application
Smart Home Energy Management
Ad

Similar to A Real-Time IoT Implementation for Efficient Energy Consumption (20)

PDF
IRJET- Measuring Electricity Consumption of Appliances and Monitoring them us...
PDF
IRJET- Smart and Efficient Load Control System using Dynamic Tariff
PDF
IRJET - IoT based Smart Monitoring in Distribution System
PDF
IRJET - Smart Energy Meter with Multi-Intimation
PDF
IRJET - Energy Consumption Indicator
PDF
Real time energy data acquisition and alarming system for monitoring power co...
PDF
Real time energy data acquisition and alarming system for monitoring power co...
PDF
Simulation of Smart Meter Using Proteus software for Smart Grid
PDF
IRJET-Simulation of Smart Meter Using Proteus software for Smart Grid
PDF
IRJET - Wireless Energy Meter with Home Automation
PDF
IRJET= Energy Efficiency Audit using Raspberry-pi
PDF
IRJET - Dynamic Domestic Energy Utility Monitoring and Management using IoT
PDF
IRJET- Energy Consumption and Monitoring System using IoT
PDF
IRJET- Solar Power Monitoring System using IoT
PDF
IRJET - IoT based Energy Monitoring System for Energy Conservation
PDF
IRJET- Iot Based Smart Energy Monitoring
PDF
IRJET- Review on Design of Residential IoT based Smart Energy Meters
PDF
IRJET- IOT Based Residence Energy Control System
PDF
IoT based Smart Energy Meter
PDF
Smart Metering using E-wallet
IRJET- Measuring Electricity Consumption of Appliances and Monitoring them us...
IRJET- Smart and Efficient Load Control System using Dynamic Tariff
IRJET - IoT based Smart Monitoring in Distribution System
IRJET - Smart Energy Meter with Multi-Intimation
IRJET - Energy Consumption Indicator
Real time energy data acquisition and alarming system for monitoring power co...
Real time energy data acquisition and alarming system for monitoring power co...
Simulation of Smart Meter Using Proteus software for Smart Grid
IRJET-Simulation of Smart Meter Using Proteus software for Smart Grid
IRJET - Wireless Energy Meter with Home Automation
IRJET= Energy Efficiency Audit using Raspberry-pi
IRJET - Dynamic Domestic Energy Utility Monitoring and Management using IoT
IRJET- Energy Consumption and Monitoring System using IoT
IRJET- Solar Power Monitoring System using IoT
IRJET - IoT based Energy Monitoring System for Energy Conservation
IRJET- Iot Based Smart Energy Monitoring
IRJET- Review on Design of Residential IoT based Smart Energy Meters
IRJET- IOT Based Residence Energy Control System
IoT based Smart Energy Meter
Smart Metering using E-wallet
Ad

More from IRJET Journal (20)

PDF
Enhanced heart disease prediction using SKNDGR ensemble Machine Learning Model
PDF
Utilizing Biomedical Waste for Sustainable Brick Manufacturing: A Novel Appro...
PDF
Kiona – A Smart Society Automation Project
PDF
DESIGN AND DEVELOPMENT OF BATTERY THERMAL MANAGEMENT SYSTEM USING PHASE CHANG...
PDF
Invest in Innovation: Empowering Ideas through Blockchain Based Crowdfunding
PDF
SPACE WATCH YOUR REAL-TIME SPACE INFORMATION HUB
PDF
A Review on Influence of Fluid Viscous Damper on The Behaviour of Multi-store...
PDF
Wireless Arduino Control via Mobile: Eliminating the Need for a Dedicated Wir...
PDF
Explainable AI(XAI) using LIME and Disease Detection in Mango Leaf by Transfe...
PDF
BRAIN TUMOUR DETECTION AND CLASSIFICATION
PDF
The Project Manager as an ambassador of the contract. The case of NEC4 ECC co...
PDF
"Enhanced Heat Transfer Performance in Shell and Tube Heat Exchangers: A CFD ...
PDF
Advancements in CFD Analysis of Shell and Tube Heat Exchangers with Nanofluid...
PDF
Breast Cancer Detection using Computer Vision
PDF
Auto-Charging E-Vehicle with its battery Management.
PDF
Analysis of high energy charge particle in the Heliosphere
PDF
A Novel System for Recommending Agricultural Crops Using Machine Learning App...
PDF
Auto-Charging E-Vehicle with its battery Management.
PDF
Analysis of high energy charge particle in the Heliosphere
PDF
Wireless Arduino Control via Mobile: Eliminating the Need for a Dedicated Wir...
Enhanced heart disease prediction using SKNDGR ensemble Machine Learning Model
Utilizing Biomedical Waste for Sustainable Brick Manufacturing: A Novel Appro...
Kiona – A Smart Society Automation Project
DESIGN AND DEVELOPMENT OF BATTERY THERMAL MANAGEMENT SYSTEM USING PHASE CHANG...
Invest in Innovation: Empowering Ideas through Blockchain Based Crowdfunding
SPACE WATCH YOUR REAL-TIME SPACE INFORMATION HUB
A Review on Influence of Fluid Viscous Damper on The Behaviour of Multi-store...
Wireless Arduino Control via Mobile: Eliminating the Need for a Dedicated Wir...
Explainable AI(XAI) using LIME and Disease Detection in Mango Leaf by Transfe...
BRAIN TUMOUR DETECTION AND CLASSIFICATION
The Project Manager as an ambassador of the contract. The case of NEC4 ECC co...
"Enhanced Heat Transfer Performance in Shell and Tube Heat Exchangers: A CFD ...
Advancements in CFD Analysis of Shell and Tube Heat Exchangers with Nanofluid...
Breast Cancer Detection using Computer Vision
Auto-Charging E-Vehicle with its battery Management.
Analysis of high energy charge particle in the Heliosphere
A Novel System for Recommending Agricultural Crops Using Machine Learning App...
Auto-Charging E-Vehicle with its battery Management.
Analysis of high energy charge particle in the Heliosphere
Wireless Arduino Control via Mobile: Eliminating the Need for a Dedicated Wir...

Recently uploaded (20)

PDF
Digital Logic Computer Design lecture notes
PPTX
Engineering Ethics, Safety and Environment [Autosaved] (1).pptx
PPTX
additive manufacturing of ss316l using mig welding
PDF
Operating System & Kernel Study Guide-1 - converted.pdf
PPTX
Infosys Presentation by1.Riyan Bagwan 2.Samadhan Naiknavare 3.Gaurav Shinde 4...
PPTX
Geodesy 1.pptx...............................................
PDF
BMEC211 - INTRODUCTION TO MECHATRONICS-1.pdf
PPTX
web development for engineering and engineering
DOCX
573137875-Attendance-Management-System-original
PPTX
Lecture Notes Electrical Wiring System Components
PDF
TFEC-4-2020-Design-Guide-for-Timber-Roof-Trusses.pdf
PDF
Evaluating the Democratization of the Turkish Armed Forces from a Normative P...
PDF
Mitigating Risks through Effective Management for Enhancing Organizational Pe...
PPTX
UNIT-1 - COAL BASED THERMAL POWER PLANTS
PPTX
UNIT 4 Total Quality Management .pptx
PPT
Project quality management in manufacturing
PDF
Mohammad Mahdi Farshadian CV - Prospective PhD Student 2026
PDF
July 2025 - Top 10 Read Articles in International Journal of Software Enginee...
PPTX
MCN 401 KTU-2019-PPE KITS-MODULE 2.pptx
PPTX
Welding lecture in detail for understanding
Digital Logic Computer Design lecture notes
Engineering Ethics, Safety and Environment [Autosaved] (1).pptx
additive manufacturing of ss316l using mig welding
Operating System & Kernel Study Guide-1 - converted.pdf
Infosys Presentation by1.Riyan Bagwan 2.Samadhan Naiknavare 3.Gaurav Shinde 4...
Geodesy 1.pptx...............................................
BMEC211 - INTRODUCTION TO MECHATRONICS-1.pdf
web development for engineering and engineering
573137875-Attendance-Management-System-original
Lecture Notes Electrical Wiring System Components
TFEC-4-2020-Design-Guide-for-Timber-Roof-Trusses.pdf
Evaluating the Democratization of the Turkish Armed Forces from a Normative P...
Mitigating Risks through Effective Management for Enhancing Organizational Pe...
UNIT-1 - COAL BASED THERMAL POWER PLANTS
UNIT 4 Total Quality Management .pptx
Project quality management in manufacturing
Mohammad Mahdi Farshadian CV - Prospective PhD Student 2026
July 2025 - Top 10 Read Articles in International Journal of Software Enginee...
MCN 401 KTU-2019-PPE KITS-MODULE 2.pptx
Welding lecture in detail for understanding

A Real-Time IoT Implementation for Efficient Energy Consumption

  • 1. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395 -0056 Volume: 04 Issue: 06 | June -2017 www.irjet.net p-ISSN: 2395-0072 © 2017, IRJET | Impact Factor value: 5.181 | ISO 9001:2008 Certified Journal | Page 1525 A REAL-TIME IOT IMPLEMENTATION FOR EFFICIENT ENERGY CONSUMPTION 1J.Surya predeepa , 2Dr.R.Perumalraja, PG student1 , Professor & Head 2 1,2Department of Information and Technology, Velammal College of Engineering & Technology, Madurai -----------------------------------------------------------------------***----------------------------------------------------------------------- Abstract-In this modern era, electricity is very important to support our daily life. But today most of the people suffer due to increasing electricity bill. The existing utility system only provides feedback at the end of the month in the form of bill. So we can’t identify which device consumes more energy. In this paper we have proposed an effective implementation of internet of things (IoT) used for efficient power consumption which in turn reduces the electricity bill gradually. All electronic appliances in home/office continuously report their usage patterns and energy consumed to the server via microcontrollers. A mobile app is designed to trigger an alarm whenever the user consumes more power through any electronic device and the user is able to continuously monitor the power consumption and charge of every device connected. Fuzzy concept is used to design a predictive model for every device that controls the device being over used. User is always kept alerted of power consumption through every device. This leads to a efficient power consumption and reduced current bills. Keywords: Internet of Things, energy efficiency, usage pattern, mobile application, fuzzy concept. 1. INTRODUCTION Electricity consumption by households is largely affected by household income and appliances owned. Electricity bill is a recurrent monthly expenditure for households and the demand for electricity to residential consumers is generally inelastic. However, the percentage of household income spent on energy is one of the indicators of energy poverty. [5]. Energy consumption varies for commercial building due to several factors such as electrical appliance usage, electrical appliance type, management, etc. Due to the advancement in technology, there are new emergence appliances that are of high efficiency and have less energy consumption. Energy saving is of great important instead of its wastage, as utilizing the energy efficiently reduces the cost of energy [6]. Several electronic appliances in home/office, they consume lots of energy. So it increases the electricity bill. One way of reducing these costs is to monitor, in real time, how much power is being consumed and from these data make informed decisions about how to manage the electrical devices being powered. A system that can give users an estimate of how much energy is being, has been, and might be consumed will allow them to adjust their habits and lower the costs. The systematic electronic monitoring of energy consumption of every electronic appliance in home can be achieved with the help of Internet of things (IoT). Its major contribution is its proposed solution that is based on Arduino MEGA microcontroller. Arduino MEGA microcontroller will capture the information such as time stamp, the energy value consumed(in watts), hours used, number of times the device is switched on in a particular month (that finds how frequently the device is used) and give the values to server through RF transceiver. The measured energy use of individual appliances can be displayed through a mobile app. The mobile app is designed to retrieve the information from the server and also designed in such a way that it should alert the user through an alert message when his tariff plan is about to change due to over energy consumption. 2. METHODOLOGY Our approach allows user to inexpensively Monitoring energy use and through this system user can easily understand their usage patterns and adopt their behavior to reduce their energy consumption and costs.  Several electronic appliances are used every day that consumes lot of energy. To enable internet access to all electronic device in home we should attach to them a microcontroller which features Ethernet/WiFi interface and it should be compatible with Arduino MEGA.  Whenever a new energy event is detected (an electronic device is switched on) the microcontroller in arduino board captures the information such as time stamp, the energy value consumed(in watts), hours used, number of times the device is switched on in a particular month (that finds how frequently the device is used)
  • 2. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395 -0056 Volume: 04 Issue: 06 | June -2017 www.irjet.net p-ISSN: 2395-0072 © 2017, IRJET | Impact Factor value: 5.181 | ISO 9001:2008 Certified Journal | Page 1526  Microcontroller converts the collected information as a JSON (Java Script Object Notation since it is ease for data exchange in any format) and transmits it to the server. Server is responsible to carry out the process of storing the JSON object as a document inside a SQL database. (Note : CouchDB is much better since it itself acts as a HTTP server that supports CRUD operations in JSON objects) Sample JSON Object for Air Conditioner “device_id” : “Room 1” “device_type” : “Air Conditioner” “date_time” : “2016-11-04T10:40:54” “consumotuon_time_in_secs” : 4500 “energy_consumption_inWh” : xxx Units = power consumed in watts * time in secs / 3600000 Units = power consumed in watts * time in hours / 1000 For eg : AC works for 14 hours. During 14 hours compressor works for just 4 hours and fan works for 10 hours Energy Consumption part 1 (Assume Compressor consumes 1500w) = 1500 * 4/1000 = 6 units Energy Consumption part 1 (Assume fan consumes 80w) = 80 * 4/1000 = 0.8 units Total units consumed = 6.8 units 1. Mobile app has to be designed in such a way that it should retrieve the information from the server and compute all the above calculations. It should send those information to the user via text message for every single event (every time when a connected device is used) Figure 1 Design architecture 2. Now the user is able to view the energy consumed by individual devices. Mobile app should be designed in such a way that it should alert the user through a alert message when his tariff plan is about to change due to over energy consumption. For eg : If a person is consuming 90 units an alert message is thrown stating that his tariff plan is about to change after 100 units. (after 100 units rupees/unit increases to 6.05 from 5.45 form the very first unit. Similarly for 200 units it goes to 6.75) So for every tariff change the user is alerted with a message. 3. Fuzzy logic is introduced here to design a predictive model. Based on previous database each device is set to a maximum energy consumption (MEC) value. User is allowed to fix his range of units to be consumed overall. For eg: if a user is fixing his electricity bill should not exceed more than 5000 then the value of MEC is fixed accordingly. If the device crosses the MEC value, then the user is triggered with an alarm every time when the device is switched on. This Model allows the customer to manage his power consumption and electricity bills more efficiently. 3. IMPLEMENTATION The followings are the steps of the implementation of our work. 1. First, we acquire the Arduino board and CT sensor. We program C code to retrieve the energy usage from the appliance device in minute interval. Initially, we tested our system by connected the Arduino board with a PC as an appliance workload to make sure that the C code is performed properly. 2. Second, we programmed Android application to connect to the server that can retrieve data of power consumption from the server and display it on Android system. Also alert the user through an alert message when his tariff plan is about to change due to over energy consumption. 3. Third, the user interfaces on the Android screen are designed and created for the user’s needs. 4. Fourth, couch database is designed and created for keeping the historical records of the energy usage for each appliance device.
  • 3. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395 -0056 Volume: 04 Issue: 06 | June -2017 www.irjet.net p-ISSN: 2395-0072 © 2017, IRJET | Impact Factor value: 5.181 | ISO 9001:2008 Certified Journal | Page 1527 Figure 2 Block diagram of power consumption Monitoring Structure of android application Power consumption monitoring (PCM) application is developed using android studio. The PCM android application consists of each electronic appliance electricity usage details that is how much power consumed and charges calculated for consumed unit of power. It also consists of alert system whenever the tariff plan changed, it will send the message to the user based on units of electricity usage. Using this application we can retrieve the data stored in server. Figure 3 Structure of PCM application Figure 4 Snapshot of mobile app 4. CONCLUSION This paper presents about the development of a system called real time energy consumption monitoring based on IOT. This system consists of two parts. The first part is database store power consumption data recorded by the Arduino MEGA iBoard pro. The second part is an android application used to view and monitor the power consumption of individual electronic appliance at home and their respective cost. It also used for alert the user when the maximum usage of electricity is reached. ACKNOWLEDGMENT I would like to pay special thanks, warmth and appreciation to my guide Dr.R.Perumalraja, who made my research successful an assisted me at every point to appreciate my goal. REFERENCES [1] Mohammed Abo-Zahhad, Sabah M. Ahmed, Mohammed Farrag, Mohammed F. A.Ahmed and Abdelhay Ali “Design and Implementation of Building Energy Monitoring and Management System based on Wireless Sensor Networks” 978-1 4673-9971-5/15/$31.00 ©2015 IEEE. [2] Edwin Chobot, Daniel Newby, Renee Chandler, Nusaybah Abu-Mulaweh, “Design and Implementation of A Wireless Sensor and Actuator Network For Energy Measurement and Control At Home” International Journal of Embedded
  • 4. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395 -0056 Volume: 04 Issue: 06 | June -2017 www.irjet.net p-ISSN: 2395-0072 © 2017, IRJET | Impact Factor value: 5.181 | ISO 9001:2008 Certified Journal | Page 1528 Systems and Applications (IJESA) Vol.3, No.1, March 2013. [3] Abdul Basit, Guftaar Ahmad Sardar Sidhu, Anzar Mahmood, Member, IEEE, And Feifei Gao, Senior Member, IEEE “Efficient and Autonomous Energy Management Techniques for the Future Smart Homes” IEEE Transactions On Smart Grid. [4] Alessandro Ghelli, Hani Hagras, Fellow, IEEE, and Ghadah Aldabbagh, Member, IEEE “A Fuzzy Logic- Based Retrofit System for Enabling Smart Energy- Efficient Electric Cookers” IEEE Transactions on Fuzzy Systems, Vol. 23, No. 6, December 2015. [5] Chen Li, T. Logenthiran, W. L. Woo, “ Development of Mobile Application for Smart Home Energy Management: iSHome” 978-1-5090-0128- 6/16/$31.00 ©2016 IEEE. [6] Abubakar Kabir Aliyu1*, Abba Lawan Bukar2, Jamilu Garba Ringim3, Abubakar Musa “An Approach to Energy Saving and Cost of Energy Reduction Using an Improved Efficient Technology” Open Journal of Energy Efficiency, 2015, 4, 61-68 Published Online December 2015 in SciRes. http://www.scirp.org/journal/ojee http://dx.doi.org/10.4236/ojee.2015.44007. [7] M. Victoria Moreno_ and Antonio F. Skarmeta “Exploiting IoT-based Sensed Data in Smart Buildings to Model its Energy Consumption” IEEE ICC 2015 SAC - Internet of Things. [8] O. M. Longe, K. Ouahada, S. Rimer, H. Zhu, H. C. Ferreira “Effective Energy Consumption Scheduling in Smart Homes” 978-1-4799-7498-6/15/$31.00 ©2015 IEEE. [9] Dariush Shahgoshtasbi, Student Member, IEEE, and Mo M. Jamshidi, Fellow, IEEE “A New Intelligent Neuro–Fuzzy Paradigm for Energy-Efficient Homes” IEEE Systems Journal, Vol. 8, No. 2, June 2014. [10] Darshan Iyer N, Dr.K.A.Radhakrishna Rao “IoT Based Electricity Energy Meter Reading, Theft Detection and Disconnection using PLC modem and an optimization” International Journal of Advanced Research in Electrical, Electronics and Instrumentation Engineering Vol.4, Issues 7, July 2015.