SlideShare a Scribd company logo
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 07 Issue: 04 | Apr 2020 www.irjet.net p-ISSN: 2395-0072
© 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 571
INTELLIGENT LIGHTING SOLUTION
Debanksh Mohanty1, Aryan2, Aman Kumar Srivastava3
1,2,3B. Tech, Electrical and Electronics, SRM Institute of science and technology, Chennai, India
---------------------------------------------------------------------***---------------------------------------------------------------------
Abstract - As the world is going towards digitization at a
rapid pace and demand for electricity is increasingday byday.
As in India the government has said that our consumption is
nearly equal in billions and increasing day by day, so to limit
these electricity demand and reduce the burden on the grid,
we have made a project which reduces the electricity
consumption by mainly focusing on the automation of
electrical appliances, by the use of different sensors (IR, LDR,
Bluetooth Module) by the combination of these the appliance
is controlled and the electricity demand is reduced.
Key Words: Consumption, Digitization, Electricity,
Sensors
1. INTRODUCTION
As in India with a population of around 1.37Billion the
electricity demand is tremendously growing year by year at
a rate of nearly 4.72% per year as per the record in 2018.
The electricity demand inIndia ismainly fulfilledbyThermal
Power Plants mainly run by NTPC, ADANI POWER,
RELIANCE POWER, about 80% load is on the thermal power
plants. But as the pollution level is increasing, the
government is focusing to move towards renewablesources
of energy mainly PV and Wind, and has proposed a plan for
meeting half of its electricity demand by renewable
resources till 2030. So to meet this plan either we need a
huge land (that is PV requires around 5 hectares of land to
develop 1MW in comparison to thermal you could generate
1MW in 0.7 hectares’ land) and for wind you need optimal
climate, which is a disadvantage of renewable sources of
energy. So we need to minimize our energy demand we
cannot move on adding power plants because we don’t have
so much land or favorable conditions.
So the method we have to use is either minimize the load or
start to use energy efficient appliances to balancetheenergy
demand with the load, for this now the government is
developing more schemes like peak shaving, load
rescheduling and more. Government is asking people to use
energy efficient products like LED bulbs in place of old
Fluorescent bulbs which consume more energy in
comparison to LED’s, But the use of these objects have to be
monitored it should be incorporated with the digitalization
so that all of the electrical appliance couldbecontrolledwith
the Internet (from portable devices) whichwill makeitmore
easier to control and monitor, so in this project we have
incorporated the existing sensor in loping manner which
works together, and the monitoring can be done. Which
effectively reduces the energy consumption and provides a
better control operation.
2. SENSOR CONCEPTS AND COMPONENTS USED
2.1 Infrared Sensor(IR)
This sensor works as the eyes of the project and it is used to
sense the movement of the person in front of it. As every
human radiates some amount of heatintheformofradiation
in the infrared region which is sensed by the IR sensor.
There are two probes on which sends signals and the other
one which catches the signals the timing of both these
signals are used to calculate the distance and movement of
the person in the project as indicated below in Fig1.
Fig-1 IR sensor
2.2 Light Dependent Resistor Sensor(LDR)
I A light dependent resistor also known as a photoresistor, is
a device which depends on the light that is its resistance
varies with the light failing on it. In our project it is used to
measure the illumination of light present in the room and is
tuned according to be ON for the light if it’sbelowthereading
condition and Turn OFF if the light present in the room is
above the reading capacity. This module has a resistance
plate that is placed directly uncovered onwhichthelightfalls
as shown in Fig 2 below
Fig-2 LDR Sensor
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 07 Issue: 04 | Apr 2020 www.irjet.net p-ISSN: 2395-0072
© 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 572
2.3 Bluetooth Module
This is the sensor which is required to control the setup
remotely, this module is a hardware component that
provides peripheral commands to work withtheproject,it is
connected with two pins, one for transmissionandotherone
for receiving the commands given by the user. It is shown
below in Fig 3.
Fig-3 Bluetooth Module
2.3 Controller (Arduino UNO)
The controller that is incorporated in the project is Arduino
UNO, which is a microcontroller and the most important
element in the project which controls all the command
receiving and outgoing, it receives theanalogsignalsthatare
coming and process it digitally and sendtheoutput.Itisused
as a networking element for all the sensors and devices. It is
shown below in Fig3.
Fig-4 Arduino UNO
2.4 Relay Module
A relay is a electromagnetic switch which is used to control
the switching action, it gets the input signal fromthesensors
through the Arduino UNO and delivers the outputatthehigh
voltage terminal by controlling the LED bulb. The 2 Channel
relay is shown below in the fig 5.
Fig-5 Relay Module
3. WORKING
Three sensors are used in this project; these sensors are
connected with the Arduino Uno. Depending upon the light
intensity in the room the LDR sensor gives the signal to the
Arduino. Similarly, the IR sensor detects the motion of the
person and gives the command to the Arduino when
someone enters the room to turn on the light. In case the
user inside the room wants to turn off the light he can make
use of the Bluetooth module and mobile application to turn
off the light.
In our project we have used the integration of the three
modules, first the user gives command- ON command thatis
“1” in the app “Bluetooth Terminal HC-05”. Then this
information is send through the Tx and Rx pin of the module
after that Arduino checks from the signal of IR sensor if it
gives the ON command that is there is somebodyintheroom
it will then check the command for the LDR which will check
for the light intensity level of the room if all the three
condition satisfied the Bulb will start to glow. If any of the
process in between fails it will turn off the light once again.
So in this way there is no use of a single sensor but it works
in the coordination of all the three sensors which makes it
more efficient.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 07 Issue: 04 | Apr 2020 www.irjet.net p-ISSN: 2395-0072
© 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 573
4. FLOW CHART 5. CODE
The code is written in the Arduino IDE which controls the
whole project-
#include <SoftwareSerial.h>// import the serial library
//#define relay 13
int led=13;
int ir=A5;
int ldr=A0;
int has;
SoftwareSerial Genotronex(10, 11); // RX, TX
int BluetoothData; // the data given from Computer
void setup() {
pinMode(ir,INPUT);
pinMode(ldr,INPUT);
pinMode(led,OUTPUT);
Serial.begin(9600);
Genotronex.begin(9600);
Genotronex.println("Bluetooth On please press 1 or 0 blink
LED ..");
}
void loop() {
unsigned int Ldr;
if (Genotronex.available()){
BluetoothData=Genotronex.read();
Serial.println(BluetoothData);
if(BluetoothData=='1'){// if number 1 pressed ....
while(1){BluetoothData=Genotronex.read();
if(BluetoothData=='0'){
digitalWrite(led,0);
Genotronex.println("LED On D13 Off ! ");
break;}
Ldr=analogRead(A0);
Serial.println (Ldr);
has= digitalRead(ir);
Serial.println (has);
if(has==0){
if(Ldr<=700){
digitalWrite(led,HIGH);
}
else
{digitalWrite(led,LOW);}}
else
{digitalWrite(led,LOW); } }
Genotronex.println("LED On D13 ON ! ");}
}}
6. CONCLUSIONS
This project was made with all the hardware components
and the results were justified, and the energy saving was
recorded. Below in the two figures it can be seen. Fig 6 and
Fig 7, In the Fig 6 it can be seen the light is currently not ON
as there is no human interface present, but as soon as a
finger is brought near to the IR sensor the light glows as
shown in fig 7. The project was controlled by the Bluetooth
module through the android app “Bluetooth Terminal HC-
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 07 Issue: 04 | Apr 2020 www.irjet.net p-ISSN: 2395-0072
© 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 574
05”, This project can be implemented on large scale in office
buildings and factories.
Fig-6 Off Condition
Fig-7 On Condition
REFERENCES
[1] Yusaku Fujiir, Smart street light system with energy
saving function based on the sensor network,
Conference: Proceedings of the fourth international
conference on Future energy systems
[2] Smart Street Lighting System Chetna Badgaiyan, Palak
Sehgal, International Journal of Science and Research
(IJSR)
[3] Mrs.M.PriyaDharsini, SMART STREET LIGHTING,
International Research Journal of Engineering and
Technology(IRJET)
BIOGRAPHIES
Studying in SRM Institute Of
Science And Technology, Chennai,
B.Tech Electrical And Electronics
Engineering graduating in 2020.
Studying in SRM Institute Of
Science And Technology, Chennai,
B.Tech Electrical And Electronics
Engineering graduating in 2020.
Studying in SRM Institute Of
Science And Technology, Chennai,
B.Tech Electrical And Electronics
Engineering graduating in 2020.

More Related Content

What's hot

IRJET- Brainy Streets with Automatic Lighting System
IRJET-  	  Brainy Streets with Automatic Lighting SystemIRJET-  	  Brainy Streets with Automatic Lighting System
IRJET- Brainy Streets with Automatic Lighting System
IRJET Journal
 
IRJET- Smart Energy Management System
IRJET-  	  Smart Energy Management SystemIRJET-  	  Smart Energy Management System
IRJET- Smart Energy Management System
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 Measurement with IoT
Power Measurement with IoTPower Measurement with IoT
Power Measurement with IoT
Rama Jalamanchili
 
HOME AUTOMATION USING ARDUINO
HOME AUTOMATION USING ARDUINOHOME AUTOMATION USING ARDUINO
HOME AUTOMATION USING ARDUINO
Eklavya Sharma
 
Pxc3891504
Pxc3891504Pxc3891504
Pxc3891504
avasodekar2010
 
IRJET- Smart Power Optimization with IoT
IRJET-  	  Smart Power Optimization with IoTIRJET-  	  Smart Power Optimization with IoT
IRJET- Smart Power Optimization with IoT
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
 
A Review on Smart Generator Control using Android Application
A Review on Smart Generator Control using Android ApplicationA Review on Smart Generator Control using Android Application
A Review on Smart Generator Control using Android Application
IRJET Journal
 
IRJET- IoT based Modern Greenhouse with GSM Module using Arduino Platform
IRJET- IoT based Modern Greenhouse with GSM Module using Arduino PlatformIRJET- IoT based Modern Greenhouse with GSM Module using Arduino Platform
IRJET- IoT based Modern Greenhouse with GSM Module using Arduino Platform
IRJET Journal
 
IRJET- Measuring Electricity Consumption of Appliances and Monitoring the...
IRJET-  	  Measuring Electricity Consumption of Appliances and Monitoring the...IRJET-  	  Measuring Electricity Consumption of Appliances and Monitoring the...
IRJET- Measuring Electricity Consumption of Appliances and Monitoring the...
IRJET Journal
 
IRJET- Smart Light Intensity Management System
IRJET- Smart Light Intensity Management SystemIRJET- Smart Light Intensity Management System
IRJET- Smart Light Intensity Management System
IRJET Journal
 
IoT Based Home Automation using Intel Galileo Gen-2
IoT Based Home Automation using Intel Galileo Gen-2IoT Based Home Automation using Intel Galileo Gen-2
IoT Based Home Automation using Intel Galileo Gen-2
IRJET Journal
 
Design and Implementation of IOT Based Smart Power Monitoring and Management ...
Design and Implementation of IOT Based Smart Power Monitoring and Management ...Design and Implementation of IOT Based Smart Power Monitoring and Management ...
Design and Implementation of IOT Based Smart Power Monitoring and Management ...
ijesajournal
 
Monitoring and Controlling Device for Smart Greenhouse by using Thinger.io Io...
Monitoring and Controlling Device for Smart Greenhouse by using Thinger.io Io...Monitoring and Controlling Device for Smart Greenhouse by using Thinger.io Io...
Monitoring and Controlling Device for Smart Greenhouse by using Thinger.io Io...
ijtsrd
 
Paper 5 tahun kebelakang 2019 2015 ferdi andersen nugraha 09030581721005
Paper 5 tahun kebelakang 2019 2015 ferdi andersen nugraha 09030581721005Paper 5 tahun kebelakang 2019 2015 ferdi andersen nugraha 09030581721005
Paper 5 tahun kebelakang 2019 2015 ferdi andersen nugraha 09030581721005
ferdiandersen08
 
Industrial Automation Monitor and Control using IoT
Industrial Automation Monitor and Control using IoT Industrial Automation Monitor and Control using IoT
Industrial Automation Monitor and Control using IoT
IRJET Journal
 
Io t based electricity energy meter using esp12 and arduino at sln technologies
Io t based electricity energy meter using esp12 and arduino at sln technologiesIo t based electricity energy meter using esp12 and arduino at sln technologies
Io t based electricity energy meter using esp12 and arduino at sln technologies
SLN Technologies - Chennai
 
Home automation System
Home automation SystemHome automation System
Home automation System
Naman Gautam
 

What's hot (19)

IRJET- Brainy Streets with Automatic Lighting System
IRJET-  	  Brainy Streets with Automatic Lighting SystemIRJET-  	  Brainy Streets with Automatic Lighting System
IRJET- Brainy Streets with Automatic Lighting System
 
IRJET- Smart Energy Management System
IRJET-  	  Smart Energy Management SystemIRJET-  	  Smart Energy Management System
IRJET- Smart Energy Management System
 
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 Measurement with IoT
Power Measurement with IoTPower Measurement with IoT
Power Measurement with IoT
 
HOME AUTOMATION USING ARDUINO
HOME AUTOMATION USING ARDUINOHOME AUTOMATION USING ARDUINO
HOME AUTOMATION USING ARDUINO
 
Pxc3891504
Pxc3891504Pxc3891504
Pxc3891504
 
IRJET- Smart Power Optimization with IoT
IRJET-  	  Smart Power Optimization with IoTIRJET-  	  Smart Power Optimization with IoT
IRJET- Smart Power Optimization with IoT
 
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
 
A Review on Smart Generator Control using Android Application
A Review on Smart Generator Control using Android ApplicationA Review on Smart Generator Control using Android Application
A Review on Smart Generator Control using Android Application
 
IRJET- IoT based Modern Greenhouse with GSM Module using Arduino Platform
IRJET- IoT based Modern Greenhouse with GSM Module using Arduino PlatformIRJET- IoT based Modern Greenhouse with GSM Module using Arduino Platform
IRJET- IoT based Modern Greenhouse with GSM Module using Arduino Platform
 
IRJET- Measuring Electricity Consumption of Appliances and Monitoring the...
IRJET-  	  Measuring Electricity Consumption of Appliances and Monitoring the...IRJET-  	  Measuring Electricity Consumption of Appliances and Monitoring the...
IRJET- Measuring Electricity Consumption of Appliances and Monitoring the...
 
IRJET- Smart Light Intensity Management System
IRJET- Smart Light Intensity Management SystemIRJET- Smart Light Intensity Management System
IRJET- Smart Light Intensity Management System
 
IoT Based Home Automation using Intel Galileo Gen-2
IoT Based Home Automation using Intel Galileo Gen-2IoT Based Home Automation using Intel Galileo Gen-2
IoT Based Home Automation using Intel Galileo Gen-2
 
Design and Implementation of IOT Based Smart Power Monitoring and Management ...
Design and Implementation of IOT Based Smart Power Monitoring and Management ...Design and Implementation of IOT Based Smart Power Monitoring and Management ...
Design and Implementation of IOT Based Smart Power Monitoring and Management ...
 
Monitoring and Controlling Device for Smart Greenhouse by using Thinger.io Io...
Monitoring and Controlling Device for Smart Greenhouse by using Thinger.io Io...Monitoring and Controlling Device for Smart Greenhouse by using Thinger.io Io...
Monitoring and Controlling Device for Smart Greenhouse by using Thinger.io Io...
 
Paper 5 tahun kebelakang 2019 2015 ferdi andersen nugraha 09030581721005
Paper 5 tahun kebelakang 2019 2015 ferdi andersen nugraha 09030581721005Paper 5 tahun kebelakang 2019 2015 ferdi andersen nugraha 09030581721005
Paper 5 tahun kebelakang 2019 2015 ferdi andersen nugraha 09030581721005
 
Industrial Automation Monitor and Control using IoT
Industrial Automation Monitor and Control using IoT Industrial Automation Monitor and Control using IoT
Industrial Automation Monitor and Control using IoT
 
Io t based electricity energy meter using esp12 and arduino at sln technologies
Io t based electricity energy meter using esp12 and arduino at sln technologiesIo t based electricity energy meter using esp12 and arduino at sln technologies
Io t based electricity energy meter using esp12 and arduino at sln technologies
 
Home automation System
Home automation SystemHome automation System
Home automation System
 

Similar to IRJET - Intelligent Lighting Solution

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 - Smart Street Light System using IoT
IRJET - Smart Street Light System using IoTIRJET - Smart Street Light System using IoT
IRJET - Smart Street Light System using IoT
IRJET Journal
 
Industrial Mains Power Monitoring and Alert System Over LAN Network
Industrial Mains Power Monitoring and Alert System Over LAN NetworkIndustrial Mains Power Monitoring and Alert System Over LAN Network
Industrial Mains Power Monitoring and Alert System Over LAN Network
IRJET Journal
 
IRJET- IoT based Solar Power Monitoring System
IRJET- IoT based Solar Power Monitoring SystemIRJET- IoT based Solar Power Monitoring System
IRJET- IoT based Solar Power Monitoring System
IRJET Journal
 
IRJET- Android based Home Automation using Bluetooth Technology
IRJET- Android based Home Automation using Bluetooth TechnologyIRJET- Android based Home Automation using Bluetooth Technology
IRJET- Android based Home Automation using Bluetooth Technology
IRJET Journal
 
IRJET- IoT based Smart Energy Meter
IRJET- IoT based Smart Energy MeterIRJET- IoT based Smart Energy Meter
IRJET- IoT based Smart Energy Meter
IRJET Journal
 
IOT Based Environmental Pollution Monitoring System
IOT Based Environmental Pollution Monitoring SystemIOT Based Environmental Pollution Monitoring System
IOT Based Environmental Pollution Monitoring System
IRJET Journal
 
IRJET- Smart Farm Fertilizer and Pesticide Prediction using IoT
IRJET-  	  Smart Farm Fertilizer and Pesticide Prediction using IoTIRJET-  	  Smart Farm Fertilizer and Pesticide Prediction using IoT
IRJET- Smart Farm Fertilizer and Pesticide Prediction using IoT
IRJET Journal
 
IRJET - Intravenous Fluid Level Indicator with Movable Sensor Unit
IRJET - Intravenous Fluid Level Indicator with Movable Sensor UnitIRJET - Intravenous Fluid Level Indicator with Movable Sensor Unit
IRJET - Intravenous Fluid Level Indicator with Movable Sensor Unit
IRJET Journal
 
IRJET- Remotely Monitoring Health of the Solar Power System using Arduino
IRJET-  	  Remotely Monitoring Health of the Solar Power System using ArduinoIRJET-  	  Remotely Monitoring Health of the Solar Power System using Arduino
IRJET- Remotely Monitoring Health of the Solar Power System using Arduino
IRJET Journal
 
Automatic Light Turn On Off System
Automatic Light Turn On Off SystemAutomatic Light Turn On Off System
Automatic Light Turn On Off System
ijtsrd
 
IRJET - Talking Plant using IoT and Machine Laerning
IRJET -  	  Talking Plant using IoT and Machine LaerningIRJET -  	  Talking Plant using IoT and Machine Laerning
IRJET - Talking Plant using IoT and Machine Laerning
IRJET Journal
 
IRJET- PC Controlled Wireless Robot for Detecting Human Presence
IRJET-  	  PC Controlled Wireless Robot for Detecting Human PresenceIRJET-  	  PC Controlled Wireless Robot for Detecting Human Presence
IRJET- PC Controlled Wireless Robot for Detecting Human Presence
IRJET Journal
 
IRJET - A Cyber-Physical System for Environmental Monitoring Based on IOT
IRJET -  	  A Cyber-Physical System for Environmental Monitoring Based on IOTIRJET -  	  A Cyber-Physical System for Environmental Monitoring Based on IOT
IRJET - A Cyber-Physical System for Environmental Monitoring Based on IOT
IRJET Journal
 
SMART WASTE MANAGEMENT SYSTEM USING IOT
SMART WASTE MANAGEMENT SYSTEM USING IOTSMART WASTE MANAGEMENT SYSTEM USING IOT
SMART WASTE MANAGEMENT SYSTEM USING IOT
IRJET Journal
 
IRJET- Low Powered Radio Frequency and PIR Sensor based Security Device
IRJET- Low Powered Radio Frequency and PIR Sensor based Security DeviceIRJET- Low Powered Radio Frequency and PIR Sensor based Security Device
IRJET- Low Powered Radio Frequency and PIR Sensor based Security Device
IRJET Journal
 
IRJET - Automatic Street Light Control by Detecting Vehicle Movement
IRJET -  	  Automatic Street Light Control by Detecting Vehicle MovementIRJET -  	  Automatic Street Light Control by Detecting Vehicle Movement
IRJET - Automatic Street Light Control by Detecting Vehicle Movement
IRJET Journal
 
Wind Turbine Monitoring System Using IoT
Wind Turbine Monitoring System Using IoTWind Turbine Monitoring System Using IoT
Wind Turbine Monitoring System Using IoT
IRJET Journal
 
IRJET - Compactness based Traffic Signal Monitoring System
IRJET - Compactness based Traffic Signal Monitoring SystemIRJET - Compactness based Traffic Signal Monitoring System
IRJET - Compactness based Traffic Signal Monitoring System
IRJET Journal
 
IRJET- Measuring Electricity Consumption of Appliances and Monitoring them us...
IRJET- Measuring Electricity Consumption of Appliances and Monitoring them us...IRJET- Measuring Electricity Consumption of Appliances and Monitoring them us...
IRJET- Measuring Electricity Consumption of Appliances and Monitoring them us...
IRJET Journal
 

Similar to IRJET - Intelligent Lighting Solution (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 - Smart Street Light System using IoT
IRJET - Smart Street Light System using IoTIRJET - Smart Street Light System using IoT
IRJET - Smart Street Light System using IoT
 
Industrial Mains Power Monitoring and Alert System Over LAN Network
Industrial Mains Power Monitoring and Alert System Over LAN NetworkIndustrial Mains Power Monitoring and Alert System Over LAN Network
Industrial Mains Power Monitoring and Alert System Over LAN Network
 
IRJET- IoT based Solar Power Monitoring System
IRJET- IoT based Solar Power Monitoring SystemIRJET- IoT based Solar Power Monitoring System
IRJET- IoT based Solar Power Monitoring System
 
IRJET- Android based Home Automation using Bluetooth Technology
IRJET- Android based Home Automation using Bluetooth TechnologyIRJET- Android based Home Automation using Bluetooth Technology
IRJET- Android based Home Automation using Bluetooth Technology
 
IRJET- IoT based Smart Energy Meter
IRJET- IoT based Smart Energy MeterIRJET- IoT based Smart Energy Meter
IRJET- IoT based Smart Energy Meter
 
IOT Based Environmental Pollution Monitoring System
IOT Based Environmental Pollution Monitoring SystemIOT Based Environmental Pollution Monitoring System
IOT Based Environmental Pollution Monitoring System
 
IRJET- Smart Farm Fertilizer and Pesticide Prediction using IoT
IRJET-  	  Smart Farm Fertilizer and Pesticide Prediction using IoTIRJET-  	  Smart Farm Fertilizer and Pesticide Prediction using IoT
IRJET- Smart Farm Fertilizer and Pesticide Prediction using IoT
 
IRJET - Intravenous Fluid Level Indicator with Movable Sensor Unit
IRJET - Intravenous Fluid Level Indicator with Movable Sensor UnitIRJET - Intravenous Fluid Level Indicator with Movable Sensor Unit
IRJET - Intravenous Fluid Level Indicator with Movable Sensor Unit
 
IRJET- Remotely Monitoring Health of the Solar Power System using Arduino
IRJET-  	  Remotely Monitoring Health of the Solar Power System using ArduinoIRJET-  	  Remotely Monitoring Health of the Solar Power System using Arduino
IRJET- Remotely Monitoring Health of the Solar Power System using Arduino
 
Automatic Light Turn On Off System
Automatic Light Turn On Off SystemAutomatic Light Turn On Off System
Automatic Light Turn On Off System
 
IRJET - Talking Plant using IoT and Machine Laerning
IRJET -  	  Talking Plant using IoT and Machine LaerningIRJET -  	  Talking Plant using IoT and Machine Laerning
IRJET - Talking Plant using IoT and Machine Laerning
 
IRJET- PC Controlled Wireless Robot for Detecting Human Presence
IRJET-  	  PC Controlled Wireless Robot for Detecting Human PresenceIRJET-  	  PC Controlled Wireless Robot for Detecting Human Presence
IRJET- PC Controlled Wireless Robot for Detecting Human Presence
 
IRJET - A Cyber-Physical System for Environmental Monitoring Based on IOT
IRJET -  	  A Cyber-Physical System for Environmental Monitoring Based on IOTIRJET -  	  A Cyber-Physical System for Environmental Monitoring Based on IOT
IRJET - A Cyber-Physical System for Environmental Monitoring Based on IOT
 
SMART WASTE MANAGEMENT SYSTEM USING IOT
SMART WASTE MANAGEMENT SYSTEM USING IOTSMART WASTE MANAGEMENT SYSTEM USING IOT
SMART WASTE MANAGEMENT SYSTEM USING IOT
 
IRJET- Low Powered Radio Frequency and PIR Sensor based Security Device
IRJET- Low Powered Radio Frequency and PIR Sensor based Security DeviceIRJET- Low Powered Radio Frequency and PIR Sensor based Security Device
IRJET- Low Powered Radio Frequency and PIR Sensor based Security Device
 
IRJET - Automatic Street Light Control by Detecting Vehicle Movement
IRJET -  	  Automatic Street Light Control by Detecting Vehicle MovementIRJET -  	  Automatic Street Light Control by Detecting Vehicle Movement
IRJET - Automatic Street Light Control by Detecting Vehicle Movement
 
Wind Turbine Monitoring System Using IoT
Wind Turbine Monitoring System Using IoTWind Turbine Monitoring System Using IoT
Wind Turbine Monitoring System Using IoT
 
IRJET - Compactness based Traffic Signal Monitoring System
IRJET - Compactness based Traffic Signal Monitoring SystemIRJET - Compactness based Traffic Signal Monitoring System
IRJET - Compactness based Traffic Signal Monitoring System
 
IRJET- Measuring Electricity Consumption of Appliances and Monitoring them us...
IRJET- Measuring Electricity Consumption of Appliances and Monitoring them us...IRJET- Measuring Electricity Consumption of Appliances and Monitoring them us...
IRJET- Measuring Electricity Consumption of Appliances and Monitoring them us...
 

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

2008 BUILDING CONSTRUCTION Illustrated - Ching Chapter 02 The Building.pdf
2008 BUILDING CONSTRUCTION Illustrated - Ching Chapter 02 The Building.pdf2008 BUILDING CONSTRUCTION Illustrated - Ching Chapter 02 The Building.pdf
2008 BUILDING CONSTRUCTION Illustrated - Ching Chapter 02 The Building.pdf
Yasser Mahgoub
 
Use PyCharm for remote debugging of WSL on a Windo cf5c162d672e4e58b4dde5d797...
Use PyCharm for remote debugging of WSL on a Windo cf5c162d672e4e58b4dde5d797...Use PyCharm for remote debugging of WSL on a Windo cf5c162d672e4e58b4dde5d797...
Use PyCharm for remote debugging of WSL on a Windo cf5c162d672e4e58b4dde5d797...
shadow0702a
 
TIME TABLE MANAGEMENT SYSTEM testing.pptx
TIME TABLE MANAGEMENT SYSTEM testing.pptxTIME TABLE MANAGEMENT SYSTEM testing.pptx
TIME TABLE MANAGEMENT SYSTEM testing.pptx
CVCSOfficial
 
Mechanical Engineering on AAI Summer Training Report-003.pdf
Mechanical Engineering on AAI Summer Training Report-003.pdfMechanical Engineering on AAI Summer Training Report-003.pdf
Mechanical Engineering on AAI Summer Training Report-003.pdf
21UME003TUSHARDEB
 
LLM Fine Tuning with QLoRA Cassandra Lunch 4, presented by Anant
LLM Fine Tuning with QLoRA Cassandra Lunch 4, presented by AnantLLM Fine Tuning with QLoRA Cassandra Lunch 4, presented by Anant
LLM Fine Tuning with QLoRA Cassandra Lunch 4, presented by Anant
Anant Corporation
 
CEC 352 - SATELLITE COMMUNICATION UNIT 1
CEC 352 - SATELLITE COMMUNICATION UNIT 1CEC 352 - SATELLITE COMMUNICATION UNIT 1
CEC 352 - SATELLITE COMMUNICATION UNIT 1
PKavitha10
 
一比一原版(uofo毕业证书)美国俄勒冈大学毕业证如何办理
一比一原版(uofo毕业证书)美国俄勒冈大学毕业证如何办理一比一原版(uofo毕业证书)美国俄勒冈大学毕业证如何办理
一比一原版(uofo毕业证书)美国俄勒冈大学毕业证如何办理
upoux
 
VARIABLE FREQUENCY DRIVE. VFDs are widely used in industrial applications for...
VARIABLE FREQUENCY DRIVE. VFDs are widely used in industrial applications for...VARIABLE FREQUENCY DRIVE. VFDs are widely used in industrial applications for...
VARIABLE FREQUENCY DRIVE. VFDs are widely used in industrial applications for...
PIMR BHOPAL
 
AI for Legal Research with applications, tools
AI for Legal Research with applications, toolsAI for Legal Research with applications, tools
AI for Legal Research with applications, tools
mahaffeycheryld
 
2008 BUILDING CONSTRUCTION Illustrated - Ching Chapter 08 Doors and Windows.pdf
2008 BUILDING CONSTRUCTION Illustrated - Ching Chapter 08 Doors and Windows.pdf2008 BUILDING CONSTRUCTION Illustrated - Ching Chapter 08 Doors and Windows.pdf
2008 BUILDING CONSTRUCTION Illustrated - Ching Chapter 08 Doors and Windows.pdf
Yasser Mahgoub
 
Optimizing Gradle Builds - Gradle DPE Tour Berlin 2024
Optimizing Gradle Builds - Gradle DPE Tour Berlin 2024Optimizing Gradle Builds - Gradle DPE Tour Berlin 2024
Optimizing Gradle Builds - Gradle DPE Tour Berlin 2024
Sinan KOZAK
 
DEEP LEARNING FOR SMART GRID INTRUSION DETECTION: A HYBRID CNN-LSTM-BASED MODEL
DEEP LEARNING FOR SMART GRID INTRUSION DETECTION: A HYBRID CNN-LSTM-BASED MODELDEEP LEARNING FOR SMART GRID INTRUSION DETECTION: A HYBRID CNN-LSTM-BASED MODEL
DEEP LEARNING FOR SMART GRID INTRUSION DETECTION: A HYBRID CNN-LSTM-BASED MODEL
ijaia
 
22CYT12-Unit-V-E Waste and its Management.ppt
22CYT12-Unit-V-E Waste and its Management.ppt22CYT12-Unit-V-E Waste and its Management.ppt
22CYT12-Unit-V-E Waste and its Management.ppt
KrishnaveniKrishnara1
 
Software Engineering and Project Management - Introduction, Modeling Concepts...
Software Engineering and Project Management - Introduction, Modeling Concepts...Software Engineering and Project Management - Introduction, Modeling Concepts...
Software Engineering and Project Management - Introduction, Modeling Concepts...
Prakhyath Rai
 
一比一原版(osu毕业证书)美国俄勒冈州立大学毕业证如何办理
一比一原版(osu毕业证书)美国俄勒冈州立大学毕业证如何办理一比一原版(osu毕业证书)美国俄勒冈州立大学毕业证如何办理
一比一原版(osu毕业证书)美国俄勒冈州立大学毕业证如何办理
upoux
 
1FIDIC-CONSTRUCTION-CONTRACT-2ND-ED-2017-RED-BOOK.pdf
1FIDIC-CONSTRUCTION-CONTRACT-2ND-ED-2017-RED-BOOK.pdf1FIDIC-CONSTRUCTION-CONTRACT-2ND-ED-2017-RED-BOOK.pdf
1FIDIC-CONSTRUCTION-CONTRACT-2ND-ED-2017-RED-BOOK.pdf
MadhavJungKarki
 
Applications of artificial Intelligence in Mechanical Engineering.pdf
Applications of artificial Intelligence in Mechanical Engineering.pdfApplications of artificial Intelligence in Mechanical Engineering.pdf
Applications of artificial Intelligence in Mechanical Engineering.pdf
Atif Razi
 
AI + Data Community Tour - Build the Next Generation of Apps with the Einstei...
AI + Data Community Tour - Build the Next Generation of Apps with the Einstei...AI + Data Community Tour - Build the Next Generation of Apps with the Einstei...
AI + Data Community Tour - Build the Next Generation of Apps with the Einstei...
Paris Salesforce Developer Group
 
Electric vehicle and photovoltaic advanced roles in enhancing the financial p...
Electric vehicle and photovoltaic advanced roles in enhancing the financial p...Electric vehicle and photovoltaic advanced roles in enhancing the financial p...
Electric vehicle and photovoltaic advanced roles in enhancing the financial p...
IJECEIAES
 
Data Driven Maintenance | UReason Webinar
Data Driven Maintenance | UReason WebinarData Driven Maintenance | UReason Webinar
Data Driven Maintenance | UReason Webinar
UReason
 

Recently uploaded (20)

2008 BUILDING CONSTRUCTION Illustrated - Ching Chapter 02 The Building.pdf
2008 BUILDING CONSTRUCTION Illustrated - Ching Chapter 02 The Building.pdf2008 BUILDING CONSTRUCTION Illustrated - Ching Chapter 02 The Building.pdf
2008 BUILDING CONSTRUCTION Illustrated - Ching Chapter 02 The Building.pdf
 
Use PyCharm for remote debugging of WSL on a Windo cf5c162d672e4e58b4dde5d797...
Use PyCharm for remote debugging of WSL on a Windo cf5c162d672e4e58b4dde5d797...Use PyCharm for remote debugging of WSL on a Windo cf5c162d672e4e58b4dde5d797...
Use PyCharm for remote debugging of WSL on a Windo cf5c162d672e4e58b4dde5d797...
 
TIME TABLE MANAGEMENT SYSTEM testing.pptx
TIME TABLE MANAGEMENT SYSTEM testing.pptxTIME TABLE MANAGEMENT SYSTEM testing.pptx
TIME TABLE MANAGEMENT SYSTEM testing.pptx
 
Mechanical Engineering on AAI Summer Training Report-003.pdf
Mechanical Engineering on AAI Summer Training Report-003.pdfMechanical Engineering on AAI Summer Training Report-003.pdf
Mechanical Engineering on AAI Summer Training Report-003.pdf
 
LLM Fine Tuning with QLoRA Cassandra Lunch 4, presented by Anant
LLM Fine Tuning with QLoRA Cassandra Lunch 4, presented by AnantLLM Fine Tuning with QLoRA Cassandra Lunch 4, presented by Anant
LLM Fine Tuning with QLoRA Cassandra Lunch 4, presented by Anant
 
CEC 352 - SATELLITE COMMUNICATION UNIT 1
CEC 352 - SATELLITE COMMUNICATION UNIT 1CEC 352 - SATELLITE COMMUNICATION UNIT 1
CEC 352 - SATELLITE COMMUNICATION UNIT 1
 
一比一原版(uofo毕业证书)美国俄勒冈大学毕业证如何办理
一比一原版(uofo毕业证书)美国俄勒冈大学毕业证如何办理一比一原版(uofo毕业证书)美国俄勒冈大学毕业证如何办理
一比一原版(uofo毕业证书)美国俄勒冈大学毕业证如何办理
 
VARIABLE FREQUENCY DRIVE. VFDs are widely used in industrial applications for...
VARIABLE FREQUENCY DRIVE. VFDs are widely used in industrial applications for...VARIABLE FREQUENCY DRIVE. VFDs are widely used in industrial applications for...
VARIABLE FREQUENCY DRIVE. VFDs are widely used in industrial applications for...
 
AI for Legal Research with applications, tools
AI for Legal Research with applications, toolsAI for Legal Research with applications, tools
AI for Legal Research with applications, tools
 
2008 BUILDING CONSTRUCTION Illustrated - Ching Chapter 08 Doors and Windows.pdf
2008 BUILDING CONSTRUCTION Illustrated - Ching Chapter 08 Doors and Windows.pdf2008 BUILDING CONSTRUCTION Illustrated - Ching Chapter 08 Doors and Windows.pdf
2008 BUILDING CONSTRUCTION Illustrated - Ching Chapter 08 Doors and Windows.pdf
 
Optimizing Gradle Builds - Gradle DPE Tour Berlin 2024
Optimizing Gradle Builds - Gradle DPE Tour Berlin 2024Optimizing Gradle Builds - Gradle DPE Tour Berlin 2024
Optimizing Gradle Builds - Gradle DPE Tour Berlin 2024
 
DEEP LEARNING FOR SMART GRID INTRUSION DETECTION: A HYBRID CNN-LSTM-BASED MODEL
DEEP LEARNING FOR SMART GRID INTRUSION DETECTION: A HYBRID CNN-LSTM-BASED MODELDEEP LEARNING FOR SMART GRID INTRUSION DETECTION: A HYBRID CNN-LSTM-BASED MODEL
DEEP LEARNING FOR SMART GRID INTRUSION DETECTION: A HYBRID CNN-LSTM-BASED MODEL
 
22CYT12-Unit-V-E Waste and its Management.ppt
22CYT12-Unit-V-E Waste and its Management.ppt22CYT12-Unit-V-E Waste and its Management.ppt
22CYT12-Unit-V-E Waste and its Management.ppt
 
Software Engineering and Project Management - Introduction, Modeling Concepts...
Software Engineering and Project Management - Introduction, Modeling Concepts...Software Engineering and Project Management - Introduction, Modeling Concepts...
Software Engineering and Project Management - Introduction, Modeling Concepts...
 
一比一原版(osu毕业证书)美国俄勒冈州立大学毕业证如何办理
一比一原版(osu毕业证书)美国俄勒冈州立大学毕业证如何办理一比一原版(osu毕业证书)美国俄勒冈州立大学毕业证如何办理
一比一原版(osu毕业证书)美国俄勒冈州立大学毕业证如何办理
 
1FIDIC-CONSTRUCTION-CONTRACT-2ND-ED-2017-RED-BOOK.pdf
1FIDIC-CONSTRUCTION-CONTRACT-2ND-ED-2017-RED-BOOK.pdf1FIDIC-CONSTRUCTION-CONTRACT-2ND-ED-2017-RED-BOOK.pdf
1FIDIC-CONSTRUCTION-CONTRACT-2ND-ED-2017-RED-BOOK.pdf
 
Applications of artificial Intelligence in Mechanical Engineering.pdf
Applications of artificial Intelligence in Mechanical Engineering.pdfApplications of artificial Intelligence in Mechanical Engineering.pdf
Applications of artificial Intelligence in Mechanical Engineering.pdf
 
AI + Data Community Tour - Build the Next Generation of Apps with the Einstei...
AI + Data Community Tour - Build the Next Generation of Apps with the Einstei...AI + Data Community Tour - Build the Next Generation of Apps with the Einstei...
AI + Data Community Tour - Build the Next Generation of Apps with the Einstei...
 
Electric vehicle and photovoltaic advanced roles in enhancing the financial p...
Electric vehicle and photovoltaic advanced roles in enhancing the financial p...Electric vehicle and photovoltaic advanced roles in enhancing the financial p...
Electric vehicle and photovoltaic advanced roles in enhancing the financial p...
 
Data Driven Maintenance | UReason Webinar
Data Driven Maintenance | UReason WebinarData Driven Maintenance | UReason Webinar
Data Driven Maintenance | UReason Webinar
 

IRJET - Intelligent Lighting Solution

  • 1. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 07 Issue: 04 | Apr 2020 www.irjet.net p-ISSN: 2395-0072 © 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 571 INTELLIGENT LIGHTING SOLUTION Debanksh Mohanty1, Aryan2, Aman Kumar Srivastava3 1,2,3B. Tech, Electrical and Electronics, SRM Institute of science and technology, Chennai, India ---------------------------------------------------------------------***--------------------------------------------------------------------- Abstract - As the world is going towards digitization at a rapid pace and demand for electricity is increasingday byday. As in India the government has said that our consumption is nearly equal in billions and increasing day by day, so to limit these electricity demand and reduce the burden on the grid, we have made a project which reduces the electricity consumption by mainly focusing on the automation of electrical appliances, by the use of different sensors (IR, LDR, Bluetooth Module) by the combination of these the appliance is controlled and the electricity demand is reduced. Key Words: Consumption, Digitization, Electricity, Sensors 1. INTRODUCTION As in India with a population of around 1.37Billion the electricity demand is tremendously growing year by year at a rate of nearly 4.72% per year as per the record in 2018. The electricity demand inIndia ismainly fulfilledbyThermal Power Plants mainly run by NTPC, ADANI POWER, RELIANCE POWER, about 80% load is on the thermal power plants. But as the pollution level is increasing, the government is focusing to move towards renewablesources of energy mainly PV and Wind, and has proposed a plan for meeting half of its electricity demand by renewable resources till 2030. So to meet this plan either we need a huge land (that is PV requires around 5 hectares of land to develop 1MW in comparison to thermal you could generate 1MW in 0.7 hectares’ land) and for wind you need optimal climate, which is a disadvantage of renewable sources of energy. So we need to minimize our energy demand we cannot move on adding power plants because we don’t have so much land or favorable conditions. So the method we have to use is either minimize the load or start to use energy efficient appliances to balancetheenergy demand with the load, for this now the government is developing more schemes like peak shaving, load rescheduling and more. Government is asking people to use energy efficient products like LED bulbs in place of old Fluorescent bulbs which consume more energy in comparison to LED’s, But the use of these objects have to be monitored it should be incorporated with the digitalization so that all of the electrical appliance couldbecontrolledwith the Internet (from portable devices) whichwill makeitmore easier to control and monitor, so in this project we have incorporated the existing sensor in loping manner which works together, and the monitoring can be done. Which effectively reduces the energy consumption and provides a better control operation. 2. SENSOR CONCEPTS AND COMPONENTS USED 2.1 Infrared Sensor(IR) This sensor works as the eyes of the project and it is used to sense the movement of the person in front of it. As every human radiates some amount of heatintheformofradiation in the infrared region which is sensed by the IR sensor. There are two probes on which sends signals and the other one which catches the signals the timing of both these signals are used to calculate the distance and movement of the person in the project as indicated below in Fig1. Fig-1 IR sensor 2.2 Light Dependent Resistor Sensor(LDR) I A light dependent resistor also known as a photoresistor, is a device which depends on the light that is its resistance varies with the light failing on it. In our project it is used to measure the illumination of light present in the room and is tuned according to be ON for the light if it’sbelowthereading condition and Turn OFF if the light present in the room is above the reading capacity. This module has a resistance plate that is placed directly uncovered onwhichthelightfalls as shown in Fig 2 below Fig-2 LDR Sensor
  • 2. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 07 Issue: 04 | Apr 2020 www.irjet.net p-ISSN: 2395-0072 © 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 572 2.3 Bluetooth Module This is the sensor which is required to control the setup remotely, this module is a hardware component that provides peripheral commands to work withtheproject,it is connected with two pins, one for transmissionandotherone for receiving the commands given by the user. It is shown below in Fig 3. Fig-3 Bluetooth Module 2.3 Controller (Arduino UNO) The controller that is incorporated in the project is Arduino UNO, which is a microcontroller and the most important element in the project which controls all the command receiving and outgoing, it receives theanalogsignalsthatare coming and process it digitally and sendtheoutput.Itisused as a networking element for all the sensors and devices. It is shown below in Fig3. Fig-4 Arduino UNO 2.4 Relay Module A relay is a electromagnetic switch which is used to control the switching action, it gets the input signal fromthesensors through the Arduino UNO and delivers the outputatthehigh voltage terminal by controlling the LED bulb. The 2 Channel relay is shown below in the fig 5. Fig-5 Relay Module 3. WORKING Three sensors are used in this project; these sensors are connected with the Arduino Uno. Depending upon the light intensity in the room the LDR sensor gives the signal to the Arduino. Similarly, the IR sensor detects the motion of the person and gives the command to the Arduino when someone enters the room to turn on the light. In case the user inside the room wants to turn off the light he can make use of the Bluetooth module and mobile application to turn off the light. In our project we have used the integration of the three modules, first the user gives command- ON command thatis “1” in the app “Bluetooth Terminal HC-05”. Then this information is send through the Tx and Rx pin of the module after that Arduino checks from the signal of IR sensor if it gives the ON command that is there is somebodyintheroom it will then check the command for the LDR which will check for the light intensity level of the room if all the three condition satisfied the Bulb will start to glow. If any of the process in between fails it will turn off the light once again. So in this way there is no use of a single sensor but it works in the coordination of all the three sensors which makes it more efficient.
  • 3. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 07 Issue: 04 | Apr 2020 www.irjet.net p-ISSN: 2395-0072 © 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 573 4. FLOW CHART 5. CODE The code is written in the Arduino IDE which controls the whole project- #include <SoftwareSerial.h>// import the serial library //#define relay 13 int led=13; int ir=A5; int ldr=A0; int has; SoftwareSerial Genotronex(10, 11); // RX, TX int BluetoothData; // the data given from Computer void setup() { pinMode(ir,INPUT); pinMode(ldr,INPUT); pinMode(led,OUTPUT); Serial.begin(9600); Genotronex.begin(9600); Genotronex.println("Bluetooth On please press 1 or 0 blink LED .."); } void loop() { unsigned int Ldr; if (Genotronex.available()){ BluetoothData=Genotronex.read(); Serial.println(BluetoothData); if(BluetoothData=='1'){// if number 1 pressed .... while(1){BluetoothData=Genotronex.read(); if(BluetoothData=='0'){ digitalWrite(led,0); Genotronex.println("LED On D13 Off ! "); break;} Ldr=analogRead(A0); Serial.println (Ldr); has= digitalRead(ir); Serial.println (has); if(has==0){ if(Ldr<=700){ digitalWrite(led,HIGH); } else {digitalWrite(led,LOW);}} else {digitalWrite(led,LOW); } } Genotronex.println("LED On D13 ON ! ");} }} 6. CONCLUSIONS This project was made with all the hardware components and the results were justified, and the energy saving was recorded. Below in the two figures it can be seen. Fig 6 and Fig 7, In the Fig 6 it can be seen the light is currently not ON as there is no human interface present, but as soon as a finger is brought near to the IR sensor the light glows as shown in fig 7. The project was controlled by the Bluetooth module through the android app “Bluetooth Terminal HC-
  • 4. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 07 Issue: 04 | Apr 2020 www.irjet.net p-ISSN: 2395-0072 © 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 574 05”, This project can be implemented on large scale in office buildings and factories. Fig-6 Off Condition Fig-7 On Condition REFERENCES [1] Yusaku Fujiir, Smart street light system with energy saving function based on the sensor network, Conference: Proceedings of the fourth international conference on Future energy systems [2] Smart Street Lighting System Chetna Badgaiyan, Palak Sehgal, International Journal of Science and Research (IJSR) [3] Mrs.M.PriyaDharsini, SMART STREET LIGHTING, International Research Journal of Engineering and Technology(IRJET) BIOGRAPHIES Studying in SRM Institute Of Science And Technology, Chennai, B.Tech Electrical And Electronics Engineering graduating in 2020. Studying in SRM Institute Of Science And Technology, Chennai, B.Tech Electrical And Electronics Engineering graduating in 2020. Studying in SRM Institute Of Science And Technology, Chennai, B.Tech Electrical And Electronics Engineering graduating in 2020.