SlideShare a Scribd company logo
TELKOMNIKA Indonesian Journal of Electrical Engineering
Vol. 13, No. 2, February 2015, pp. 232 ~ 237
DOI: 10.11591/telkomnika.v13i2.7046  232
Received November 20, 2014; Revised January 2, 2015; Accepted January 15, 2015
Energy Efficient RF Remote Control for Dimming the
Household Applainces
Rajesh Singh*, Piyush Kuchhal, Anita, Sushaban Choudhary
University of Petroleum and Energy Studies, Dehradun, India
*Corresponding author, e-mail: rsingh@ddn.upes.ac.in
Abstract
During recent years there is a strong trend towards radio frequency (RF) remote controls as it is
delivering even more comfort to the users and increased usability with high robustness of the RF links.
Lower power consumption with new features and security make RF remote control systems more
competitive with widely used IR remote control systems. In this paper we propose, a RF module based
real time system, which is an integrated system designed to control the dimming or speed of the
appliances. Zigbee module is used as RF module to establish wireless link between Remote and appliance
section having 9600kbs baud rate and range of 100m. Dimming control circuits is part of appliances
section which is used to control the appliances corresponding to signals generated by the remote section.
This system provides energy efficient solution for household uses.
Keywords: applaince section, dimming control circuit, energy efficient, RF remote
Copyright © 2015 Institute of Advanced Engineering and Science. All rights reserved.
1. Introduction
In present market there are number of IR remote controlled appliances are available.
The data transmission using IR modules are having limitation of line of sight, which is required
by transmitter and receiver. In this paper, an energy efficient systems under dimming condition
is considered, paper focus on system cost, real energy saving, reliability and environmental
friendliness. The system proposed for large-scale lighting applications where the dimming
function can be used to provide energy savings such as car parking, residential public parks etc
[1]. The system provides solution to existing wired lightning system having complex construction
[2]. The energy consumption is rapidly increasing due to development of the urbanization
process and population. It also affects the cost and supply of electricity [3]. Due to drawback of
its short range and speed RS-232-based digitally dimming lighting system and also each lighting
area needs its own driver and dimmer circuit, which results in large numbers of circuit
components and non-cost-effectiveness. It needs to improve [4]. USB-based protocol instead of
the RS-232-based, provide better interface and increase dimming controlled nodes (devices)
with the use of Zigbee transmission [5]. Zigbee transreceiver module is based on IEEE 802.15.4
protocol to make the wireless sensor network [6]. The system provides the characteristics of low
power, low cost, flexible structure [7]. ADPCM (adaptive differential pulse code modulation)
dimming control system can be used to control the LED current with high resolution. It also
helps to reduce RFI (radio frequency intensity) because of spreading out the harmonic current
of pulses [8]. By simulation results it can be concluded that pulse width modulation (PWM)-
based pulse position modulation (PPM) signal format is better for visible light communication
systems. It is also useful for operation of data transmission and dimming control simultaneously
[9]. A new scheme is proposed to avoid problems of the pulse width modulation (PWM) control
of the lamp current. A PWM-controlled half-bridge inverter is used for this purpose [10]. A
dynamic dimming control system is discussed for highway tunnel LED lighting, based on
controllability of LED [11].
2. Hardware Development
In the proposed system the communication range between remote and appaliance node
is of 100 meters. At the remote section control switches (two for UP/DOWN dimming bulb, two
for UP/DOWN dimming Fan and One for OK the set level ) are to generate control signals
TELKOMNIKA ISSN: 2302-4046 
Energy Efficient RF Remote Control for Dimming the Household Applainces (Rajesh Singh)
233
corresponding to both appliances. The bulb is dimmed in eight levels and fan is dimmed in four
levels. Processing unit is Atmega16, which is programmed by Embedded C language and
generated Hex code is then dumped to it through ISP connector. Display unit is to display and
check input to controller. The block diagram of remote Section for the proposed system is
shown in Figure 1 and Figure 2 represents the block diagram of applliances section for the
proposed system. AVR studio4 is used and programming is done in embedded C language.
Zigbee is used as RF module. In this system dimming control circuits are used to control
dimming of appliances with the help of different ports of single controller.
Figure 1. Block diagram of Remote Section
for the proposed system
Figure 2. Block diagram of appliance section
for the proposed system
Figure 3. Developed receiver section Figure 4. Snap Shot of developed system
3. System Software Design
The controller is programmed with the help of AVR studio. The language used for this is
Embedded C and complied with open source compiler avr.gcc. The software design of the
system is divided in two sections.
3.1.Remote Section
Program for remote section:
#include <avr/io.h> // avr main header file
#include <util/delay_basic.h> //avr delay header file
#include "lcd.h" //avr lcd header file
DDRB&=~(1<<0); //Assigning register B as input
DDRB&=~(1<<1);
DDRB&=~(1<<2);
DDRB&=~(1<<3);
PORTB|=(1<<0);
PORTB|=(1<<1);
PORTB|=(1<<2);
 ISSN: 2302-4046
TELKOMNIKA Vol. 13, No. 2, February 2015 : 232 – 237
234
PORTB|= (1<<3);
InitUSART (71);// initilise USART
LCDInit (0);// initilise LCD
LCDClear();// clear LCD
if(!(PINB&1)) // reading pin 0 of B register
{
_delay_ms(200);
LCDClear();
LCDWriteSXY(0,0,"FAN Speed in %");
LCDWriteSXY(7,1,"10%");
USARTWChar('a');// write data
}
else if(!(PINB&4))// reading pin 2 of B register
{
_delay_ms(200);
LCDClear();
LCDWriteStringXY(0,0,"FAN Speed in %"); // print on LCD
LCDWriteStringXY(7,1,"50%"); // print on LCD
USARTWChar('c'); // write data
}
The Programming window of AVR studio4 for remote Section is shown in Figure 5.
Figure 5. Programming window of AVR studio4 for remote Section
3.2.Applaince Section
Program for receiver section
InitUSART (71);// initilise USART
LCDInit (0);// initilise LCD
LCDClear();// clear LCD
DDRB=0b00001111;//assign register as output
PORTB=0b00001111;
while(1)
{
data=UReadChar();// read data as char
if(data=='a')// received data
{
PORTB=0b00001101;// dimmer signal from PORT B
LCDClear();//clear LCD
LCDWriteSXY(0,0,"FAN Speed in %");// print on LCD
LCDWriteSXY(7,1,"10%");// print on LCD
}
else if(data=='d')// received data as char
{
TELKOMNIKA ISSN: 2302-4046 
Energy Efficient RF Remote Control for Dimming the Household Applainces (Rajesh Singh)
235
PORTB=0b00000011; // dimmer signal from PORT B
LCDClear();//clear LCD
LCDWriteSXY(0,0,"FAN Speed in %");// print on LCD
LCDWriteSXY(7,1,"75%");// print on LCD
}
The Programming window of AVR studio4 for receiver section is shown in Figure 6.
Figure 6. Programming window of AVR studio4 for receiver section
Flow Chart:
Figure 7. Flow chart of Programming window of AVR studio4
 ISSN: 2302-4046
TELKOMNIKA Vol. 13, No. 2, February 2015 : 232 – 237
236
The Table 1 shows the load power consumption w.r.t dimming level of the device with
the help of dimmer circuit, if divided into eight levels.
Table 1. The load power of dimmable port (up to 1kW)
Input to
dimmer
from
controller
% input
provided
by remote
Load
current
(A)
Voltage
across port
(V)
Load
Power
(W)
At 50
ohm
111 15 1.1 55 60.5
110 25 1.88 94 176.74
101 40 2.4 120 288
100 50 2.8 140 392
011 60 3.2 160 512
010 75 4.04 202 816.08
001 85 4.36 218 950.48
000 100 4.6 230 1058
Figure 8 shows the graphical relation of power consumption w.r.t dimmer level. It clearly
shows at low dimmer level power consumption is low.
Figure 8. Graph shows relation between power consumption w.r.t dimmer levels
Black color graph line shows current consumption by system w.r.t dimmer level. Blue
graph line shows voltage required by the system w.r.t dimmer level. Sky blue graph line shows
power consumption by the system w.r.t dimmer level.
4. Conclusion
Zigbee module based developed system has no limitation of line of sight like IR remotes
and establish wireless link at 9600kbps. The number of appliances can be controlled by using
single module of the proposed system. Dimmer control system is able to reduce the amount of
energy. The system offers energy saving through their dimming capabilities and to reduce
electrical demand.
References
[1] Chung HSH, Ngai-Man Ho, Wei Yan, Tam PW, Hui SY. Comparison of Dimmable Electromagnetic
and Electronic Ballast Systems-An Assessment on Energy Efficiency and Lifetime. Industrial
Electronics, IEEE Transactions on. 2007; 54(6): 3145, 3154.
[2] LiLian LiLi. Wireless dimming system for LED Street lamp basedon ZigBee and GPRS System
Science 3rd
International conference on Engineering Design and Manufacturing. Informatization
(ICSEM). 2012; 2: 100-102
TELKOMNIKA ISSN: 2302-4046 
Energy Efficient RF Remote Control for Dimming the Household Applainces (Rajesh Singh)
237
[3] Fan Chunling, Guo Yuan. The application of a ZigBee based wireless sensor network in the LED
street lamp control system Image. International Conference on Analysis and Signal Processing
(IASP). 2011: 501 – 504.
[4] Cheng Liang L. Implementation of a digitally dimming controlled lighting system for two
area fluorescent lamps. 5th IEEE Conference on Industrial Electronics and Applications (ICIEA).
2010: 2281 – 2286.
[5] Chun An Cheng; Hung-Liang Cheng, Kun-Jheng Lin, Kuan-Lin Chu, Chun-Hsien Yen. A digitally
wireless dimmable lighting system for two-area fluorescent lamps. TENCON 2010 - 2010 IEEE Region
10 Conference. 2010; 2173,2178.
[6] Singh R Mishra, S Joshi P. Pressure Monitoring in wireless sensor network using Zigbee™
transceiver module. ICCCT. 2011 ISBN: 978-1-4577-1385-9.
[7] Singh R, Mishra S. Temperature monitoring in wireless sensor network using Zigbee transceiver
module. Power, Control and Embedded Systems (ICPCES). International Conference on. 2010; 1-4.
[8] Yoo, Sooyeub Yoo, Sooyeub. Highly efficient LED light driver with dimming control using delta sigma
modulation. 31st International Telecommunications Energy Conference. 2009: 1 - 4.
[9] Hyung-Joon Jang, Joon-Ho Choi, Ghassemlooy Z, Chung Ghiu Lee, PWM-based PPM format for
dimming control in visible light communication system. Communication Systems, Networks & Digital
Signal Processing (CSNDSP). 8th International Symposium on. 2012: 1,5.
[10] Raiser F. Dim the lights. Problems with lamp current control using a PWM signal. Industry Applications
Magazine, IEEE. 2002; 8(6): 54,59.
[11] Dingyuan Wang, Haifeng Jiang, Junfeng Ma, Xiaolong Zheng. Dynamic Dimming Control Method
Research on Tunnel LED Lighting Based on LED Controllability. Remote Sensing, Environment and
Transportation Engineering (RSETE). 2nd International Conference on. 2012: 1,4.

More Related Content

What's hot

Home Automation Control System using SMS
Home Automation Control System using SMSHome Automation Control System using SMS
Home Automation Control System using SMS
IRJET Journal
 
VOCATIONAL TRAINING-1
VOCATIONAL TRAINING-1VOCATIONAL TRAINING-1
VOCATIONAL TRAINING-1
Sagnik Mukherjee
 
Automatic fire prevteing system in train and buses
Automatic fire prevteing system in train and busesAutomatic fire prevteing system in train and buses
Automatic fire prevteing system in train and buses
Vasu Manikandan
 
Ieeepro techno solutions ieee embedded project intelligent wireless street l...
Ieeepro techno solutions  ieee embedded project intelligent wireless street l...Ieeepro techno solutions  ieee embedded project intelligent wireless street l...
Ieeepro techno solutions ieee embedded project intelligent wireless street l...
srinivasanece7
 
Energy scavenging using vibrations from bluetooth controlled DC motor
Energy scavenging using vibrations from bluetooth controlled DC motorEnergy scavenging using vibrations from bluetooth controlled DC motor
Energy scavenging using vibrations from bluetooth controlled DC motor
TELKOMNIKA JOURNAL
 
Electrical Appliances Control using Wi-Fi and Laptop
Electrical Appliances Control using Wi-Fi and LaptopElectrical Appliances Control using Wi-Fi and Laptop
Electrical Appliances Control using Wi-Fi and Laptop
IRJET Journal
 
Fixed Access_SAGNIK MUKHERJEE_001210701013_ppt
Fixed Access_SAGNIK MUKHERJEE_001210701013_pptFixed Access_SAGNIK MUKHERJEE_001210701013_ppt
Fixed Access_SAGNIK MUKHERJEE_001210701013_ppt
Sagnik Mukherjee
 
Switching
SwitchingSwitching
Switching
krishnendu17
 
DMRC Telecom EPABX System
DMRC Telecom EPABX SystemDMRC Telecom EPABX System
Switching systems lecture2
Switching  systems lecture2Switching  systems lecture2
Switching systems lecture2
Jumaan Ally Mohamed
 
Communication & information security final
Communication & information security finalCommunication & information security final
Communication & information security final
neerajchor
 
satellite communication in ONGC July 2011
satellite communication in ONGC July 2011satellite communication in ONGC July 2011
satellite communication in ONGC July 2011
SRIJAN KUMAR
 
A project report on energy meter monitoring online using wireless transmissio...
A project report on energy meter monitoring online using wireless transmissio...A project report on energy meter monitoring online using wireless transmissio...
A project report on energy meter monitoring online using wireless transmissio...
Robo India
 
Ieeepro techno solutions ieee 2014 embedded prokect emb base paper 43
Ieeepro techno solutions  ieee 2014 embedded prokect emb base paper 43Ieeepro techno solutions  ieee 2014 embedded prokect emb base paper 43
Ieeepro techno solutions ieee 2014 embedded prokect emb base paper 43
srinivasanece7
 
Multisim design and simulation of 2.2 g hz lna for wireless communication
Multisim design and simulation of 2.2 g hz lna for wireless communicationMultisim design and simulation of 2.2 g hz lna for wireless communication
Multisim design and simulation of 2.2 g hz lna for wireless communication
VLSICS Design
 
A novel cmos model design for 2 6 g hz wideband lna input matching using resi...
A novel cmos model design for 2 6 g hz wideband lna input matching using resi...A novel cmos model design for 2 6 g hz wideband lna input matching using resi...
A novel cmos model design for 2 6 g hz wideband lna input matching using resi...
IAEME Publication
 
IRJET- Load Frequency Control in Two Area Power Systems Integrated with S...
IRJET-  	  Load Frequency Control in Two Area Power Systems Integrated with S...IRJET-  	  Load Frequency Control in Two Area Power Systems Integrated with S...
IRJET- Load Frequency Control in Two Area Power Systems Integrated with S...
IRJET Journal
 
Ec8004 wireless networks unit 1 ieee 802.11a and ieee 802.11b
Ec8004 wireless networks unit 1 ieee 802.11a and ieee 802.11bEc8004 wireless networks unit 1 ieee 802.11a and ieee 802.11b
Ec8004 wireless networks unit 1 ieee 802.11a and ieee 802.11b
HemalathaR31
 
“Reliable power quality monitoring and protection
“Reliable power quality monitoring and protection“Reliable power quality monitoring and protection
“Reliable power quality monitoring and protection
eSAT Publishing House
 
Foundation fieldbus
Foundation fieldbusFoundation fieldbus
Foundation fieldbus
sharadonlinemails
 

What's hot (20)

Home Automation Control System using SMS
Home Automation Control System using SMSHome Automation Control System using SMS
Home Automation Control System using SMS
 
VOCATIONAL TRAINING-1
VOCATIONAL TRAINING-1VOCATIONAL TRAINING-1
VOCATIONAL TRAINING-1
 
Automatic fire prevteing system in train and buses
Automatic fire prevteing system in train and busesAutomatic fire prevteing system in train and buses
Automatic fire prevteing system in train and buses
 
Ieeepro techno solutions ieee embedded project intelligent wireless street l...
Ieeepro techno solutions  ieee embedded project intelligent wireless street l...Ieeepro techno solutions  ieee embedded project intelligent wireless street l...
Ieeepro techno solutions ieee embedded project intelligent wireless street l...
 
Energy scavenging using vibrations from bluetooth controlled DC motor
Energy scavenging using vibrations from bluetooth controlled DC motorEnergy scavenging using vibrations from bluetooth controlled DC motor
Energy scavenging using vibrations from bluetooth controlled DC motor
 
Electrical Appliances Control using Wi-Fi and Laptop
Electrical Appliances Control using Wi-Fi and LaptopElectrical Appliances Control using Wi-Fi and Laptop
Electrical Appliances Control using Wi-Fi and Laptop
 
Fixed Access_SAGNIK MUKHERJEE_001210701013_ppt
Fixed Access_SAGNIK MUKHERJEE_001210701013_pptFixed Access_SAGNIK MUKHERJEE_001210701013_ppt
Fixed Access_SAGNIK MUKHERJEE_001210701013_ppt
 
Switching
SwitchingSwitching
Switching
 
DMRC Telecom EPABX System
DMRC Telecom EPABX SystemDMRC Telecom EPABX System
DMRC Telecom EPABX System
 
Switching systems lecture2
Switching  systems lecture2Switching  systems lecture2
Switching systems lecture2
 
Communication & information security final
Communication & information security finalCommunication & information security final
Communication & information security final
 
satellite communication in ONGC July 2011
satellite communication in ONGC July 2011satellite communication in ONGC July 2011
satellite communication in ONGC July 2011
 
A project report on energy meter monitoring online using wireless transmissio...
A project report on energy meter monitoring online using wireless transmissio...A project report on energy meter monitoring online using wireless transmissio...
A project report on energy meter monitoring online using wireless transmissio...
 
Ieeepro techno solutions ieee 2014 embedded prokect emb base paper 43
Ieeepro techno solutions  ieee 2014 embedded prokect emb base paper 43Ieeepro techno solutions  ieee 2014 embedded prokect emb base paper 43
Ieeepro techno solutions ieee 2014 embedded prokect emb base paper 43
 
Multisim design and simulation of 2.2 g hz lna for wireless communication
Multisim design and simulation of 2.2 g hz lna for wireless communicationMultisim design and simulation of 2.2 g hz lna for wireless communication
Multisim design and simulation of 2.2 g hz lna for wireless communication
 
A novel cmos model design for 2 6 g hz wideband lna input matching using resi...
A novel cmos model design for 2 6 g hz wideband lna input matching using resi...A novel cmos model design for 2 6 g hz wideband lna input matching using resi...
A novel cmos model design for 2 6 g hz wideband lna input matching using resi...
 
IRJET- Load Frequency Control in Two Area Power Systems Integrated with S...
IRJET-  	  Load Frequency Control in Two Area Power Systems Integrated with S...IRJET-  	  Load Frequency Control in Two Area Power Systems Integrated with S...
IRJET- Load Frequency Control in Two Area Power Systems Integrated with S...
 
Ec8004 wireless networks unit 1 ieee 802.11a and ieee 802.11b
Ec8004 wireless networks unit 1 ieee 802.11a and ieee 802.11bEc8004 wireless networks unit 1 ieee 802.11a and ieee 802.11b
Ec8004 wireless networks unit 1 ieee 802.11a and ieee 802.11b
 
“Reliable power quality monitoring and protection
“Reliable power quality monitoring and protection“Reliable power quality monitoring and protection
“Reliable power quality monitoring and protection
 
Foundation fieldbus
Foundation fieldbusFoundation fieldbus
Foundation fieldbus
 

Similar to Energy Efficient RF Remote Control for Dimming the Household Applainces

Home Automation System using Arduino and GSM
Home Automation System using Arduino and GSMHome Automation System using Arduino and GSM
Home Automation System using Arduino and GSM
IRJET Journal
 
Mobile robotic platform to gathering real time sensory data in wireless perso...
Mobile robotic platform to gathering real time sensory data in wireless perso...Mobile robotic platform to gathering real time sensory data in wireless perso...
Mobile robotic platform to gathering real time sensory data in wireless perso...
Alexander Decker
 
A remote monitoring system for a three phase 10-kva switchable distribution t...
A remote monitoring system for a three phase 10-kva switchable distribution t...A remote monitoring system for a three phase 10-kva switchable distribution t...
A remote monitoring system for a three phase 10-kva switchable distribution t...
eSAT Journals
 
A remote monitoring system for a three phase 10-kva switchable distribution t...
A remote monitoring system for a three phase 10-kva switchable distribution t...A remote monitoring system for a three phase 10-kva switchable distribution t...
A remote monitoring system for a three phase 10-kva switchable distribution t...
eSAT Publishing House
 
Modeling & Design of Dtmf Technique Based Automatic Mobile Switching & Contro...
Modeling & Design of Dtmf Technique Based Automatic Mobile Switching & Contro...Modeling & Design of Dtmf Technique Based Automatic Mobile Switching & Contro...
Modeling & Design of Dtmf Technique Based Automatic Mobile Switching & Contro...
IRJET Journal
 
Analysis of Energy Consumption in MCU for IoT System
Analysis of Energy Consumption in MCU for IoT SystemAnalysis of Energy Consumption in MCU for IoT System
Analysis of Energy Consumption in MCU for IoT System
IRJET Journal
 
International Journal of Computational Engineering Research(IJCER)
International Journal of Computational Engineering Research(IJCER)International Journal of Computational Engineering Research(IJCER)
International Journal of Computational Engineering Research(IJCER)
ijceronline
 
IRJET - Design and Implementation of RF based Wireless Home Automation System
IRJET - Design and Implementation of RF based Wireless Home Automation SystemIRJET - Design and Implementation of RF based Wireless Home Automation System
IRJET - Design and Implementation of RF based Wireless Home Automation System
IRJET Journal
 
IRJET- IoT based Street Light Monitoring & Control with Lora/Lorawan Network
IRJET-  	  IoT based Street Light Monitoring & Control with Lora/Lorawan NetworkIRJET-  	  IoT based Street Light Monitoring & Control with Lora/Lorawan Network
IRJET- IoT based Street Light Monitoring & Control with Lora/Lorawan Network
IRJET Journal
 
A Simulation of Wideband CDMA System on Digital Up/Down Converters
A Simulation of Wideband CDMA System on Digital Up/Down ConvertersA Simulation of Wideband CDMA System on Digital Up/Down Converters
A Simulation of Wideband CDMA System on Digital Up/Down Converters
Editor IJMTER
 
IRJET- Investigation on Delay and Power Minimization in IEEE 802.15.4 Protoco...
IRJET- Investigation on Delay and Power Minimization in IEEE 802.15.4 Protoco...IRJET- Investigation on Delay and Power Minimization in IEEE 802.15.4 Protoco...
IRJET- Investigation on Delay and Power Minimization in IEEE 802.15.4 Protoco...
IRJET Journal
 
Implementation and Controlling of Electrical Appliances by using Bluetooth
Implementation and Controlling of Electrical Appliances by using BluetoothImplementation and Controlling of Electrical Appliances by using Bluetooth
Implementation and Controlling of Electrical Appliances by using Bluetooth
IRJET Journal
 
Android Based Switch Controlling Technique for LED BulbsUsing Bluetooth/Wi-Fi...
Android Based Switch Controlling Technique for LED BulbsUsing Bluetooth/Wi-Fi...Android Based Switch Controlling Technique for LED BulbsUsing Bluetooth/Wi-Fi...
Android Based Switch Controlling Technique for LED BulbsUsing Bluetooth/Wi-Fi...
IJRES Journal
 
Zigbee based parameter monitoring and controlling system for induction machine
Zigbee based parameter monitoring and controlling system for induction machineZigbee based parameter monitoring and controlling system for induction machine
Zigbee based parameter monitoring and controlling system for induction machine
Naqeeb Ullah Kakar
 
E044081720
E044081720E044081720
E044081720
IJERA Editor
 
Ijarcet vol-2-issue-4-1368-1373
Ijarcet vol-2-issue-4-1368-1373Ijarcet vol-2-issue-4-1368-1373
Ijarcet vol-2-issue-4-1368-1373
Editor IJARCET
 
Ppt gsm based automatic energy meter
Ppt gsm based automatic energy meterPpt gsm based automatic energy meter
Ppt gsm based automatic energy meter
Khiti Ranjan jena
 
IRJET - Bluetooth based Digital Notice Board with Solar
IRJET - Bluetooth based Digital Notice Board with SolarIRJET - Bluetooth based Digital Notice Board with Solar
IRJET - Bluetooth based Digital Notice Board with Solar
IRJET Journal
 
Research on wireless Deviation Mode of Foundation Pit Surveying System
Research on wireless Deviation Mode of Foundation Pit Surveying SystemResearch on wireless Deviation Mode of Foundation Pit Surveying System
Research on wireless Deviation Mode of Foundation Pit Surveying System
IJRESJOURNAL
 
LORA BASED DATA ACQUISITION SYSTEM
LORA BASED DATA ACQUISITION SYSTEMLORA BASED DATA ACQUISITION SYSTEM
LORA BASED DATA ACQUISITION SYSTEM
IRJET Journal
 

Similar to Energy Efficient RF Remote Control for Dimming the Household Applainces (20)

Home Automation System using Arduino and GSM
Home Automation System using Arduino and GSMHome Automation System using Arduino and GSM
Home Automation System using Arduino and GSM
 
Mobile robotic platform to gathering real time sensory data in wireless perso...
Mobile robotic platform to gathering real time sensory data in wireless perso...Mobile robotic platform to gathering real time sensory data in wireless perso...
Mobile robotic platform to gathering real time sensory data in wireless perso...
 
A remote monitoring system for a three phase 10-kva switchable distribution t...
A remote monitoring system for a three phase 10-kva switchable distribution t...A remote monitoring system for a three phase 10-kva switchable distribution t...
A remote monitoring system for a three phase 10-kva switchable distribution t...
 
A remote monitoring system for a three phase 10-kva switchable distribution t...
A remote monitoring system for a three phase 10-kva switchable distribution t...A remote monitoring system for a three phase 10-kva switchable distribution t...
A remote monitoring system for a three phase 10-kva switchable distribution t...
 
Modeling & Design of Dtmf Technique Based Automatic Mobile Switching & Contro...
Modeling & Design of Dtmf Technique Based Automatic Mobile Switching & Contro...Modeling & Design of Dtmf Technique Based Automatic Mobile Switching & Contro...
Modeling & Design of Dtmf Technique Based Automatic Mobile Switching & Contro...
 
Analysis of Energy Consumption in MCU for IoT System
Analysis of Energy Consumption in MCU for IoT SystemAnalysis of Energy Consumption in MCU for IoT System
Analysis of Energy Consumption in MCU for IoT System
 
International Journal of Computational Engineering Research(IJCER)
International Journal of Computational Engineering Research(IJCER)International Journal of Computational Engineering Research(IJCER)
International Journal of Computational Engineering Research(IJCER)
 
IRJET - Design and Implementation of RF based Wireless Home Automation System
IRJET - Design and Implementation of RF based Wireless Home Automation SystemIRJET - Design and Implementation of RF based Wireless Home Automation System
IRJET - Design and Implementation of RF based Wireless Home Automation System
 
IRJET- IoT based Street Light Monitoring & Control with Lora/Lorawan Network
IRJET-  	  IoT based Street Light Monitoring & Control with Lora/Lorawan NetworkIRJET-  	  IoT based Street Light Monitoring & Control with Lora/Lorawan Network
IRJET- IoT based Street Light Monitoring & Control with Lora/Lorawan Network
 
A Simulation of Wideband CDMA System on Digital Up/Down Converters
A Simulation of Wideband CDMA System on Digital Up/Down ConvertersA Simulation of Wideband CDMA System on Digital Up/Down Converters
A Simulation of Wideband CDMA System on Digital Up/Down Converters
 
IRJET- Investigation on Delay and Power Minimization in IEEE 802.15.4 Protoco...
IRJET- Investigation on Delay and Power Minimization in IEEE 802.15.4 Protoco...IRJET- Investigation on Delay and Power Minimization in IEEE 802.15.4 Protoco...
IRJET- Investigation on Delay and Power Minimization in IEEE 802.15.4 Protoco...
 
Implementation and Controlling of Electrical Appliances by using Bluetooth
Implementation and Controlling of Electrical Appliances by using BluetoothImplementation and Controlling of Electrical Appliances by using Bluetooth
Implementation and Controlling of Electrical Appliances by using Bluetooth
 
Android Based Switch Controlling Technique for LED BulbsUsing Bluetooth/Wi-Fi...
Android Based Switch Controlling Technique for LED BulbsUsing Bluetooth/Wi-Fi...Android Based Switch Controlling Technique for LED BulbsUsing Bluetooth/Wi-Fi...
Android Based Switch Controlling Technique for LED BulbsUsing Bluetooth/Wi-Fi...
 
Zigbee based parameter monitoring and controlling system for induction machine
Zigbee based parameter monitoring and controlling system for induction machineZigbee based parameter monitoring and controlling system for induction machine
Zigbee based parameter monitoring and controlling system for induction machine
 
E044081720
E044081720E044081720
E044081720
 
Ijarcet vol-2-issue-4-1368-1373
Ijarcet vol-2-issue-4-1368-1373Ijarcet vol-2-issue-4-1368-1373
Ijarcet vol-2-issue-4-1368-1373
 
Ppt gsm based automatic energy meter
Ppt gsm based automatic energy meterPpt gsm based automatic energy meter
Ppt gsm based automatic energy meter
 
IRJET - Bluetooth based Digital Notice Board with Solar
IRJET - Bluetooth based Digital Notice Board with SolarIRJET - Bluetooth based Digital Notice Board with Solar
IRJET - Bluetooth based Digital Notice Board with Solar
 
Research on wireless Deviation Mode of Foundation Pit Surveying System
Research on wireless Deviation Mode of Foundation Pit Surveying SystemResearch on wireless Deviation Mode of Foundation Pit Surveying System
Research on wireless Deviation Mode of Foundation Pit Surveying System
 
LORA BASED DATA ACQUISITION SYSTEM
LORA BASED DATA ACQUISITION SYSTEMLORA BASED DATA ACQUISITION SYSTEM
LORA BASED DATA ACQUISITION SYSTEM
 

More from Radita Apriana

Dynamic RWX ACM Model Optimizing the Risk on Real Time Unix File System
Dynamic RWX ACM Model Optimizing the Risk on Real Time Unix File SystemDynamic RWX ACM Model Optimizing the Risk on Real Time Unix File System
Dynamic RWX ACM Model Optimizing the Risk on Real Time Unix File System
Radita Apriana
 
False Node Recovery Algorithm for a Wireless Sensor Network
False Node Recovery Algorithm for a Wireless Sensor NetworkFalse Node Recovery Algorithm for a Wireless Sensor Network
False Node Recovery Algorithm for a Wireless Sensor Network
Radita Apriana
 
ESL Reading Research Based on Eye Tracking Techniques
ESL Reading Research Based on Eye Tracking TechniquesESL Reading Research Based on Eye Tracking Techniques
ESL Reading Research Based on Eye Tracking Techniques
Radita Apriana
 
A New Approach to Linear Estimation Problem in Multiuser Massive MIMO Systems
A New Approach to Linear Estimation Problem in Multiuser Massive MIMO SystemsA New Approach to Linear Estimation Problem in Multiuser Massive MIMO Systems
A New Approach to Linear Estimation Problem in Multiuser Massive MIMO Systems
Radita Apriana
 
Internet Access Using Ethernet over PDH Technology for Remote Area
Internet Access Using Ethernet over PDH Technology for Remote AreaInternet Access Using Ethernet over PDH Technology for Remote Area
Internet Access Using Ethernet over PDH Technology for Remote Area
Radita Apriana
 
A New Ozone Concentration Regulator
A New Ozone Concentration RegulatorA New Ozone Concentration Regulator
A New Ozone Concentration Regulator
Radita Apriana
 
Identifying of the Cielab Space Color for the Balinese Papyrus Characters
Identifying of the Cielab Space Color for the Balinese Papyrus CharactersIdentifying of the Cielab Space Color for the Balinese Papyrus Characters
Identifying of the Cielab Space Color for the Balinese Papyrus Characters
Radita Apriana
 
Filtering Based Illumination Normalization Techniques for Face Recognition
Filtering Based Illumination Normalization Techniques for Face RecognitionFiltering Based Illumination Normalization Techniques for Face Recognition
Filtering Based Illumination Normalization Techniques for Face Recognition
Radita Apriana
 
Analysis and Estimation of Harmonics Using Wavelet Technique
Analysis and Estimation of Harmonics Using Wavelet TechniqueAnalysis and Estimation of Harmonics Using Wavelet Technique
Analysis and Estimation of Harmonics Using Wavelet Technique
Radita Apriana
 
A Novel Method for Sensing Obscene Videos using Scene Change Detection
A Novel Method for Sensing Obscene Videos using Scene Change DetectionA Novel Method for Sensing Obscene Videos using Scene Change Detection
A Novel Method for Sensing Obscene Videos using Scene Change Detection
Radita Apriana
 
Robust SINS/GNSS Integration Method for High Dynamic Applications
Robust SINS/GNSS Integration Method for High Dynamic ApplicationsRobust SINS/GNSS Integration Method for High Dynamic Applications
Robust SINS/GNSS Integration Method for High Dynamic Applications
Radita Apriana
 
Study on Adaptive PID Control Algorithm Based on RBF Neural Network
Study on Adaptive PID Control Algorithm Based on RBF Neural NetworkStudy on Adaptive PID Control Algorithm Based on RBF Neural Network
Study on Adaptive PID Control Algorithm Based on RBF Neural Network
Radita Apriana
 
Solving Method of H-Infinity Model Matching Based on the Theory of the Model ...
Solving Method of H-Infinity Model Matching Based on the Theory of the Model ...Solving Method of H-Infinity Model Matching Based on the Theory of the Model ...
Solving Method of H-Infinity Model Matching Based on the Theory of the Model ...
Radita Apriana
 
A Review to AC Modeling and Transfer Function of DCDC Converters
A Review to AC Modeling and Transfer Function of DCDC ConvertersA Review to AC Modeling and Transfer Function of DCDC Converters
A Review to AC Modeling and Transfer Function of DCDC Converters
Radita Apriana
 
DTC Method for Vector Control of 3-Phase Induction Motor under Open-Phase Fault
DTC Method for Vector Control of 3-Phase Induction Motor under Open-Phase FaultDTC Method for Vector Control of 3-Phase Induction Motor under Open-Phase Fault
DTC Method for Vector Control of 3-Phase Induction Motor under Open-Phase Fault
Radita Apriana
 
Impact Analysis of Midpoint Connected STATCOM on Distance Relay Performance
Impact Analysis of Midpoint Connected STATCOM on Distance Relay PerformanceImpact Analysis of Midpoint Connected STATCOM on Distance Relay Performance
Impact Analysis of Midpoint Connected STATCOM on Distance Relay Performance
Radita Apriana
 
Optimal Placement and Sizing of Distributed Generation Units Using Co-Evoluti...
Optimal Placement and Sizing of Distributed Generation Units Using Co-Evoluti...Optimal Placement and Sizing of Distributed Generation Units Using Co-Evoluti...
Optimal Placement and Sizing of Distributed Generation Units Using Co-Evoluti...
Radita Apriana
 
Similarity and Variance of Color Difference Based Demosaicing
Similarity and Variance of Color Difference Based DemosaicingSimilarity and Variance of Color Difference Based Demosaicing
Similarity and Variance of Color Difference Based Demosaicing
Radita Apriana
 
A Novel and Advanced Data Mining Model Based Hybrid Intrusion Detection Frame...
A Novel and Advanced Data Mining Model Based Hybrid Intrusion Detection Frame...A Novel and Advanced Data Mining Model Based Hybrid Intrusion Detection Frame...
A Novel and Advanced Data Mining Model Based Hybrid Intrusion Detection Frame...
Radita Apriana
 
Optimal Warranty Policy Considering Two-dimensional Imperfect Preventive Main...
Optimal Warranty Policy Considering Two-dimensional Imperfect Preventive Main...Optimal Warranty Policy Considering Two-dimensional Imperfect Preventive Main...
Optimal Warranty Policy Considering Two-dimensional Imperfect Preventive Main...
Radita Apriana
 

More from Radita Apriana (20)

Dynamic RWX ACM Model Optimizing the Risk on Real Time Unix File System
Dynamic RWX ACM Model Optimizing the Risk on Real Time Unix File SystemDynamic RWX ACM Model Optimizing the Risk on Real Time Unix File System
Dynamic RWX ACM Model Optimizing the Risk on Real Time Unix File System
 
False Node Recovery Algorithm for a Wireless Sensor Network
False Node Recovery Algorithm for a Wireless Sensor NetworkFalse Node Recovery Algorithm for a Wireless Sensor Network
False Node Recovery Algorithm for a Wireless Sensor Network
 
ESL Reading Research Based on Eye Tracking Techniques
ESL Reading Research Based on Eye Tracking TechniquesESL Reading Research Based on Eye Tracking Techniques
ESL Reading Research Based on Eye Tracking Techniques
 
A New Approach to Linear Estimation Problem in Multiuser Massive MIMO Systems
A New Approach to Linear Estimation Problem in Multiuser Massive MIMO SystemsA New Approach to Linear Estimation Problem in Multiuser Massive MIMO Systems
A New Approach to Linear Estimation Problem in Multiuser Massive MIMO Systems
 
Internet Access Using Ethernet over PDH Technology for Remote Area
Internet Access Using Ethernet over PDH Technology for Remote AreaInternet Access Using Ethernet over PDH Technology for Remote Area
Internet Access Using Ethernet over PDH Technology for Remote Area
 
A New Ozone Concentration Regulator
A New Ozone Concentration RegulatorA New Ozone Concentration Regulator
A New Ozone Concentration Regulator
 
Identifying of the Cielab Space Color for the Balinese Papyrus Characters
Identifying of the Cielab Space Color for the Balinese Papyrus CharactersIdentifying of the Cielab Space Color for the Balinese Papyrus Characters
Identifying of the Cielab Space Color for the Balinese Papyrus Characters
 
Filtering Based Illumination Normalization Techniques for Face Recognition
Filtering Based Illumination Normalization Techniques for Face RecognitionFiltering Based Illumination Normalization Techniques for Face Recognition
Filtering Based Illumination Normalization Techniques for Face Recognition
 
Analysis and Estimation of Harmonics Using Wavelet Technique
Analysis and Estimation of Harmonics Using Wavelet TechniqueAnalysis and Estimation of Harmonics Using Wavelet Technique
Analysis and Estimation of Harmonics Using Wavelet Technique
 
A Novel Method for Sensing Obscene Videos using Scene Change Detection
A Novel Method for Sensing Obscene Videos using Scene Change DetectionA Novel Method for Sensing Obscene Videos using Scene Change Detection
A Novel Method for Sensing Obscene Videos using Scene Change Detection
 
Robust SINS/GNSS Integration Method for High Dynamic Applications
Robust SINS/GNSS Integration Method for High Dynamic ApplicationsRobust SINS/GNSS Integration Method for High Dynamic Applications
Robust SINS/GNSS Integration Method for High Dynamic Applications
 
Study on Adaptive PID Control Algorithm Based on RBF Neural Network
Study on Adaptive PID Control Algorithm Based on RBF Neural NetworkStudy on Adaptive PID Control Algorithm Based on RBF Neural Network
Study on Adaptive PID Control Algorithm Based on RBF Neural Network
 
Solving Method of H-Infinity Model Matching Based on the Theory of the Model ...
Solving Method of H-Infinity Model Matching Based on the Theory of the Model ...Solving Method of H-Infinity Model Matching Based on the Theory of the Model ...
Solving Method of H-Infinity Model Matching Based on the Theory of the Model ...
 
A Review to AC Modeling and Transfer Function of DCDC Converters
A Review to AC Modeling and Transfer Function of DCDC ConvertersA Review to AC Modeling and Transfer Function of DCDC Converters
A Review to AC Modeling and Transfer Function of DCDC Converters
 
DTC Method for Vector Control of 3-Phase Induction Motor under Open-Phase Fault
DTC Method for Vector Control of 3-Phase Induction Motor under Open-Phase FaultDTC Method for Vector Control of 3-Phase Induction Motor under Open-Phase Fault
DTC Method for Vector Control of 3-Phase Induction Motor under Open-Phase Fault
 
Impact Analysis of Midpoint Connected STATCOM on Distance Relay Performance
Impact Analysis of Midpoint Connected STATCOM on Distance Relay PerformanceImpact Analysis of Midpoint Connected STATCOM on Distance Relay Performance
Impact Analysis of Midpoint Connected STATCOM on Distance Relay Performance
 
Optimal Placement and Sizing of Distributed Generation Units Using Co-Evoluti...
Optimal Placement and Sizing of Distributed Generation Units Using Co-Evoluti...Optimal Placement and Sizing of Distributed Generation Units Using Co-Evoluti...
Optimal Placement and Sizing of Distributed Generation Units Using Co-Evoluti...
 
Similarity and Variance of Color Difference Based Demosaicing
Similarity and Variance of Color Difference Based DemosaicingSimilarity and Variance of Color Difference Based Demosaicing
Similarity and Variance of Color Difference Based Demosaicing
 
A Novel and Advanced Data Mining Model Based Hybrid Intrusion Detection Frame...
A Novel and Advanced Data Mining Model Based Hybrid Intrusion Detection Frame...A Novel and Advanced Data Mining Model Based Hybrid Intrusion Detection Frame...
A Novel and Advanced Data Mining Model Based Hybrid Intrusion Detection Frame...
 
Optimal Warranty Policy Considering Two-dimensional Imperfect Preventive Main...
Optimal Warranty Policy Considering Two-dimensional Imperfect Preventive Main...Optimal Warranty Policy Considering Two-dimensional Imperfect Preventive Main...
Optimal Warranty Policy Considering Two-dimensional Imperfect Preventive Main...
 

Recently uploaded

Generative AI leverages algorithms to create various forms of content
Generative AI leverages algorithms to create various forms of contentGenerative AI leverages algorithms to create various forms of content
Generative AI leverages algorithms to create various forms of content
Hitesh Mohapatra
 
CSM Cloud Service Management Presentarion
CSM Cloud Service Management PresentarionCSM Cloud Service Management Presentarion
CSM Cloud Service Management Presentarion
rpskprasana
 
spirit beverages ppt without graphics.pptx
spirit beverages ppt without graphics.pptxspirit beverages ppt without graphics.pptx
spirit beverages ppt without graphics.pptx
Madan Karki
 
Redefining brain tumor segmentation: a cutting-edge convolutional neural netw...
Redefining brain tumor segmentation: a cutting-edge convolutional neural netw...Redefining brain tumor segmentation: a cutting-edge convolutional neural netw...
Redefining brain tumor segmentation: a cutting-edge convolutional neural netw...
IJECEIAES
 
哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样
哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样
哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样
insn4465
 
TIME DIVISION MULTIPLEXING TECHNIQUE FOR COMMUNICATION SYSTEM
TIME DIVISION MULTIPLEXING TECHNIQUE FOR COMMUNICATION SYSTEMTIME DIVISION MULTIPLEXING TECHNIQUE FOR COMMUNICATION SYSTEM
TIME DIVISION MULTIPLEXING TECHNIQUE FOR COMMUNICATION SYSTEM
HODECEDSIET
 
Understanding Inductive Bias in Machine Learning
Understanding Inductive Bias in Machine LearningUnderstanding Inductive Bias in Machine Learning
Understanding Inductive Bias in Machine Learning
SUTEJAS
 
Computational Engineering IITH Presentation
Computational Engineering IITH PresentationComputational Engineering IITH Presentation
Computational Engineering IITH Presentation
co23btech11018
 
Iron and Steel Technology Roadmap - Towards more sustainable steelmaking.pdf
Iron and Steel Technology Roadmap - Towards more sustainable steelmaking.pdfIron and Steel Technology Roadmap - Towards more sustainable steelmaking.pdf
Iron and Steel Technology Roadmap - Towards more sustainable steelmaking.pdf
RadiNasr
 
Question paper of renewable energy sources
Question paper of renewable energy sourcesQuestion paper of renewable energy sources
Question paper of renewable energy sources
mahammadsalmanmech
 
IEEE Aerospace and Electronic Systems Society as a Graduate Student Member
IEEE Aerospace and Electronic Systems Society as a Graduate Student MemberIEEE Aerospace and Electronic Systems Society as a Graduate Student Member
IEEE Aerospace and Electronic Systems Society as a Graduate Student Member
VICTOR MAESTRE RAMIREZ
 
Advanced control scheme of doubly fed induction generator for wind turbine us...
Advanced control scheme of doubly fed induction generator for wind turbine us...Advanced control scheme of doubly fed induction generator for wind turbine us...
Advanced control scheme of doubly fed induction generator for wind turbine us...
IJECEIAES
 
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
 
Eric Nizeyimana's document 2006 from gicumbi to ttc nyamata handball play
Eric Nizeyimana's document 2006 from gicumbi to ttc nyamata handball playEric Nizeyimana's document 2006 from gicumbi to ttc nyamata handball play
Eric Nizeyimana's document 2006 from gicumbi to ttc nyamata handball play
enizeyimana36
 
Embedded machine learning-based road conditions and driving behavior monitoring
Embedded machine learning-based road conditions and driving behavior monitoringEmbedded machine learning-based road conditions and driving behavior monitoring
Embedded machine learning-based road conditions and driving behavior monitoring
IJECEIAES
 
ACEP Magazine edition 4th launched on 05.06.2024
ACEP Magazine edition 4th launched on 05.06.2024ACEP Magazine edition 4th launched on 05.06.2024
ACEP Magazine edition 4th launched on 05.06.2024
Rahul
 
ISPM 15 Heat Treated Wood Stamps and why your shipping must have one
ISPM 15 Heat Treated Wood Stamps and why your shipping must have oneISPM 15 Heat Treated Wood Stamps and why your shipping must have one
ISPM 15 Heat Treated Wood Stamps and why your shipping must have one
Las Vegas Warehouse
 
The Python for beginners. This is an advance computer language.
The Python for beginners. This is an advance computer language.The Python for beginners. This is an advance computer language.
The Python for beginners. This is an advance computer language.
sachin chaurasia
 
BPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdf
BPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdfBPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdf
BPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdf
MIGUELANGEL966976
 
A review on techniques and modelling methodologies used for checking electrom...
A review on techniques and modelling methodologies used for checking electrom...A review on techniques and modelling methodologies used for checking electrom...
A review on techniques and modelling methodologies used for checking electrom...
nooriasukmaningtyas
 

Recently uploaded (20)

Generative AI leverages algorithms to create various forms of content
Generative AI leverages algorithms to create various forms of contentGenerative AI leverages algorithms to create various forms of content
Generative AI leverages algorithms to create various forms of content
 
CSM Cloud Service Management Presentarion
CSM Cloud Service Management PresentarionCSM Cloud Service Management Presentarion
CSM Cloud Service Management Presentarion
 
spirit beverages ppt without graphics.pptx
spirit beverages ppt without graphics.pptxspirit beverages ppt without graphics.pptx
spirit beverages ppt without graphics.pptx
 
Redefining brain tumor segmentation: a cutting-edge convolutional neural netw...
Redefining brain tumor segmentation: a cutting-edge convolutional neural netw...Redefining brain tumor segmentation: a cutting-edge convolutional neural netw...
Redefining brain tumor segmentation: a cutting-edge convolutional neural netw...
 
哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样
哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样
哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样
 
TIME DIVISION MULTIPLEXING TECHNIQUE FOR COMMUNICATION SYSTEM
TIME DIVISION MULTIPLEXING TECHNIQUE FOR COMMUNICATION SYSTEMTIME DIVISION MULTIPLEXING TECHNIQUE FOR COMMUNICATION SYSTEM
TIME DIVISION MULTIPLEXING TECHNIQUE FOR COMMUNICATION SYSTEM
 
Understanding Inductive Bias in Machine Learning
Understanding Inductive Bias in Machine LearningUnderstanding Inductive Bias in Machine Learning
Understanding Inductive Bias in Machine Learning
 
Computational Engineering IITH Presentation
Computational Engineering IITH PresentationComputational Engineering IITH Presentation
Computational Engineering IITH Presentation
 
Iron and Steel Technology Roadmap - Towards more sustainable steelmaking.pdf
Iron and Steel Technology Roadmap - Towards more sustainable steelmaking.pdfIron and Steel Technology Roadmap - Towards more sustainable steelmaking.pdf
Iron and Steel Technology Roadmap - Towards more sustainable steelmaking.pdf
 
Question paper of renewable energy sources
Question paper of renewable energy sourcesQuestion paper of renewable energy sources
Question paper of renewable energy sources
 
IEEE Aerospace and Electronic Systems Society as a Graduate Student Member
IEEE Aerospace and Electronic Systems Society as a Graduate Student MemberIEEE Aerospace and Electronic Systems Society as a Graduate Student Member
IEEE Aerospace and Electronic Systems Society as a Graduate Student Member
 
Advanced control scheme of doubly fed induction generator for wind turbine us...
Advanced control scheme of doubly fed induction generator for wind turbine us...Advanced control scheme of doubly fed induction generator for wind turbine us...
Advanced control scheme of doubly fed induction generator for wind turbine us...
 
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
 
Eric Nizeyimana's document 2006 from gicumbi to ttc nyamata handball play
Eric Nizeyimana's document 2006 from gicumbi to ttc nyamata handball playEric Nizeyimana's document 2006 from gicumbi to ttc nyamata handball play
Eric Nizeyimana's document 2006 from gicumbi to ttc nyamata handball play
 
Embedded machine learning-based road conditions and driving behavior monitoring
Embedded machine learning-based road conditions and driving behavior monitoringEmbedded machine learning-based road conditions and driving behavior monitoring
Embedded machine learning-based road conditions and driving behavior monitoring
 
ACEP Magazine edition 4th launched on 05.06.2024
ACEP Magazine edition 4th launched on 05.06.2024ACEP Magazine edition 4th launched on 05.06.2024
ACEP Magazine edition 4th launched on 05.06.2024
 
ISPM 15 Heat Treated Wood Stamps and why your shipping must have one
ISPM 15 Heat Treated Wood Stamps and why your shipping must have oneISPM 15 Heat Treated Wood Stamps and why your shipping must have one
ISPM 15 Heat Treated Wood Stamps and why your shipping must have one
 
The Python for beginners. This is an advance computer language.
The Python for beginners. This is an advance computer language.The Python for beginners. This is an advance computer language.
The Python for beginners. This is an advance computer language.
 
BPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdf
BPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdfBPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdf
BPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdf
 
A review on techniques and modelling methodologies used for checking electrom...
A review on techniques and modelling methodologies used for checking electrom...A review on techniques and modelling methodologies used for checking electrom...
A review on techniques and modelling methodologies used for checking electrom...
 

Energy Efficient RF Remote Control for Dimming the Household Applainces

  • 1. TELKOMNIKA Indonesian Journal of Electrical Engineering Vol. 13, No. 2, February 2015, pp. 232 ~ 237 DOI: 10.11591/telkomnika.v13i2.7046  232 Received November 20, 2014; Revised January 2, 2015; Accepted January 15, 2015 Energy Efficient RF Remote Control for Dimming the Household Applainces Rajesh Singh*, Piyush Kuchhal, Anita, Sushaban Choudhary University of Petroleum and Energy Studies, Dehradun, India *Corresponding author, e-mail: rsingh@ddn.upes.ac.in Abstract During recent years there is a strong trend towards radio frequency (RF) remote controls as it is delivering even more comfort to the users and increased usability with high robustness of the RF links. Lower power consumption with new features and security make RF remote control systems more competitive with widely used IR remote control systems. In this paper we propose, a RF module based real time system, which is an integrated system designed to control the dimming or speed of the appliances. Zigbee module is used as RF module to establish wireless link between Remote and appliance section having 9600kbs baud rate and range of 100m. Dimming control circuits is part of appliances section which is used to control the appliances corresponding to signals generated by the remote section. This system provides energy efficient solution for household uses. Keywords: applaince section, dimming control circuit, energy efficient, RF remote Copyright © 2015 Institute of Advanced Engineering and Science. All rights reserved. 1. Introduction In present market there are number of IR remote controlled appliances are available. The data transmission using IR modules are having limitation of line of sight, which is required by transmitter and receiver. In this paper, an energy efficient systems under dimming condition is considered, paper focus on system cost, real energy saving, reliability and environmental friendliness. The system proposed for large-scale lighting applications where the dimming function can be used to provide energy savings such as car parking, residential public parks etc [1]. The system provides solution to existing wired lightning system having complex construction [2]. The energy consumption is rapidly increasing due to development of the urbanization process and population. It also affects the cost and supply of electricity [3]. Due to drawback of its short range and speed RS-232-based digitally dimming lighting system and also each lighting area needs its own driver and dimmer circuit, which results in large numbers of circuit components and non-cost-effectiveness. It needs to improve [4]. USB-based protocol instead of the RS-232-based, provide better interface and increase dimming controlled nodes (devices) with the use of Zigbee transmission [5]. Zigbee transreceiver module is based on IEEE 802.15.4 protocol to make the wireless sensor network [6]. The system provides the characteristics of low power, low cost, flexible structure [7]. ADPCM (adaptive differential pulse code modulation) dimming control system can be used to control the LED current with high resolution. It also helps to reduce RFI (radio frequency intensity) because of spreading out the harmonic current of pulses [8]. By simulation results it can be concluded that pulse width modulation (PWM)- based pulse position modulation (PPM) signal format is better for visible light communication systems. It is also useful for operation of data transmission and dimming control simultaneously [9]. A new scheme is proposed to avoid problems of the pulse width modulation (PWM) control of the lamp current. A PWM-controlled half-bridge inverter is used for this purpose [10]. A dynamic dimming control system is discussed for highway tunnel LED lighting, based on controllability of LED [11]. 2. Hardware Development In the proposed system the communication range between remote and appaliance node is of 100 meters. At the remote section control switches (two for UP/DOWN dimming bulb, two for UP/DOWN dimming Fan and One for OK the set level ) are to generate control signals
  • 2. TELKOMNIKA ISSN: 2302-4046  Energy Efficient RF Remote Control for Dimming the Household Applainces (Rajesh Singh) 233 corresponding to both appliances. The bulb is dimmed in eight levels and fan is dimmed in four levels. Processing unit is Atmega16, which is programmed by Embedded C language and generated Hex code is then dumped to it through ISP connector. Display unit is to display and check input to controller. The block diagram of remote Section for the proposed system is shown in Figure 1 and Figure 2 represents the block diagram of applliances section for the proposed system. AVR studio4 is used and programming is done in embedded C language. Zigbee is used as RF module. In this system dimming control circuits are used to control dimming of appliances with the help of different ports of single controller. Figure 1. Block diagram of Remote Section for the proposed system Figure 2. Block diagram of appliance section for the proposed system Figure 3. Developed receiver section Figure 4. Snap Shot of developed system 3. System Software Design The controller is programmed with the help of AVR studio. The language used for this is Embedded C and complied with open source compiler avr.gcc. The software design of the system is divided in two sections. 3.1.Remote Section Program for remote section: #include <avr/io.h> // avr main header file #include <util/delay_basic.h> //avr delay header file #include "lcd.h" //avr lcd header file DDRB&=~(1<<0); //Assigning register B as input DDRB&=~(1<<1); DDRB&=~(1<<2); DDRB&=~(1<<3); PORTB|=(1<<0); PORTB|=(1<<1); PORTB|=(1<<2);
  • 3.  ISSN: 2302-4046 TELKOMNIKA Vol. 13, No. 2, February 2015 : 232 – 237 234 PORTB|= (1<<3); InitUSART (71);// initilise USART LCDInit (0);// initilise LCD LCDClear();// clear LCD if(!(PINB&1)) // reading pin 0 of B register { _delay_ms(200); LCDClear(); LCDWriteSXY(0,0,"FAN Speed in %"); LCDWriteSXY(7,1,"10%"); USARTWChar('a');// write data } else if(!(PINB&4))// reading pin 2 of B register { _delay_ms(200); LCDClear(); LCDWriteStringXY(0,0,"FAN Speed in %"); // print on LCD LCDWriteStringXY(7,1,"50%"); // print on LCD USARTWChar('c'); // write data } The Programming window of AVR studio4 for remote Section is shown in Figure 5. Figure 5. Programming window of AVR studio4 for remote Section 3.2.Applaince Section Program for receiver section InitUSART (71);// initilise USART LCDInit (0);// initilise LCD LCDClear();// clear LCD DDRB=0b00001111;//assign register as output PORTB=0b00001111; while(1) { data=UReadChar();// read data as char if(data=='a')// received data { PORTB=0b00001101;// dimmer signal from PORT B LCDClear();//clear LCD LCDWriteSXY(0,0,"FAN Speed in %");// print on LCD LCDWriteSXY(7,1,"10%");// print on LCD } else if(data=='d')// received data as char {
  • 4. TELKOMNIKA ISSN: 2302-4046  Energy Efficient RF Remote Control for Dimming the Household Applainces (Rajesh Singh) 235 PORTB=0b00000011; // dimmer signal from PORT B LCDClear();//clear LCD LCDWriteSXY(0,0,"FAN Speed in %");// print on LCD LCDWriteSXY(7,1,"75%");// print on LCD } The Programming window of AVR studio4 for receiver section is shown in Figure 6. Figure 6. Programming window of AVR studio4 for receiver section Flow Chart: Figure 7. Flow chart of Programming window of AVR studio4
  • 5.  ISSN: 2302-4046 TELKOMNIKA Vol. 13, No. 2, February 2015 : 232 – 237 236 The Table 1 shows the load power consumption w.r.t dimming level of the device with the help of dimmer circuit, if divided into eight levels. Table 1. The load power of dimmable port (up to 1kW) Input to dimmer from controller % input provided by remote Load current (A) Voltage across port (V) Load Power (W) At 50 ohm 111 15 1.1 55 60.5 110 25 1.88 94 176.74 101 40 2.4 120 288 100 50 2.8 140 392 011 60 3.2 160 512 010 75 4.04 202 816.08 001 85 4.36 218 950.48 000 100 4.6 230 1058 Figure 8 shows the graphical relation of power consumption w.r.t dimmer level. It clearly shows at low dimmer level power consumption is low. Figure 8. Graph shows relation between power consumption w.r.t dimmer levels Black color graph line shows current consumption by system w.r.t dimmer level. Blue graph line shows voltage required by the system w.r.t dimmer level. Sky blue graph line shows power consumption by the system w.r.t dimmer level. 4. Conclusion Zigbee module based developed system has no limitation of line of sight like IR remotes and establish wireless link at 9600kbps. The number of appliances can be controlled by using single module of the proposed system. Dimmer control system is able to reduce the amount of energy. The system offers energy saving through their dimming capabilities and to reduce electrical demand. References [1] Chung HSH, Ngai-Man Ho, Wei Yan, Tam PW, Hui SY. Comparison of Dimmable Electromagnetic and Electronic Ballast Systems-An Assessment on Energy Efficiency and Lifetime. Industrial Electronics, IEEE Transactions on. 2007; 54(6): 3145, 3154. [2] LiLian LiLi. Wireless dimming system for LED Street lamp basedon ZigBee and GPRS System Science 3rd International conference on Engineering Design and Manufacturing. Informatization (ICSEM). 2012; 2: 100-102
  • 6. TELKOMNIKA ISSN: 2302-4046  Energy Efficient RF Remote Control for Dimming the Household Applainces (Rajesh Singh) 237 [3] Fan Chunling, Guo Yuan. The application of a ZigBee based wireless sensor network in the LED street lamp control system Image. International Conference on Analysis and Signal Processing (IASP). 2011: 501 – 504. [4] Cheng Liang L. Implementation of a digitally dimming controlled lighting system for two area fluorescent lamps. 5th IEEE Conference on Industrial Electronics and Applications (ICIEA). 2010: 2281 – 2286. [5] Chun An Cheng; Hung-Liang Cheng, Kun-Jheng Lin, Kuan-Lin Chu, Chun-Hsien Yen. A digitally wireless dimmable lighting system for two-area fluorescent lamps. TENCON 2010 - 2010 IEEE Region 10 Conference. 2010; 2173,2178. [6] Singh R Mishra, S Joshi P. Pressure Monitoring in wireless sensor network using Zigbee™ transceiver module. ICCCT. 2011 ISBN: 978-1-4577-1385-9. [7] Singh R, Mishra S. Temperature monitoring in wireless sensor network using Zigbee transceiver module. Power, Control and Embedded Systems (ICPCES). International Conference on. 2010; 1-4. [8] Yoo, Sooyeub Yoo, Sooyeub. Highly efficient LED light driver with dimming control using delta sigma modulation. 31st International Telecommunications Energy Conference. 2009: 1 - 4. [9] Hyung-Joon Jang, Joon-Ho Choi, Ghassemlooy Z, Chung Ghiu Lee, PWM-based PPM format for dimming control in visible light communication system. Communication Systems, Networks & Digital Signal Processing (CSNDSP). 8th International Symposium on. 2012: 1,5. [10] Raiser F. Dim the lights. Problems with lamp current control using a PWM signal. Industry Applications Magazine, IEEE. 2002; 8(6): 54,59. [11] Dingyuan Wang, Haifeng Jiang, Junfeng Ma, Xiaolong Zheng. Dynamic Dimming Control Method Research on Tunnel LED Lighting Based on LED Controllability. Remote Sensing, Environment and Transportation Engineering (RSETE). 2nd International Conference on. 2012: 1,4.