ENERGY AWARE SMART HOME AUTOMATION USING ARDUINO AND LABVIEW

Size: px
Start display at page:

Download "ENERGY AWARE SMART HOME AUTOMATION USING ARDUINO AND LABVIEW"

Transcription

1 ENERGY AWARE SMART HOME AUTOMATION USING ARDUINO AND LABVIEW Bilal Shaheen, Hamza Khan, Kamil Abbas, Haroon Ur Rashid Abstract In smart homes, information technology is used to control electrical equipment and to converse with the surroundings. The technology is new and is still in the development phase. Smart home automation system is capable of replicating the domestic activities performed on daily basis such as light automation, security of the house, watering system and HVAC (heat, ventilation and air conditioning). The backbone of the system is LabVIEW which provides the complete control in the form of GUI to the end-user. This home automation system is made up of different subsystems, capable of controlling lights around the house, fire and burglar alarm to warn the user and automating different daily routines. By using an internet connection the system can be monitored from all over the world. The prototype of the system has been developed with hardware which is easily available. The prototype of the system not only monitors the power used in the house but also helps in conserving the energy by allowing the user to take full control of the system. Keywords Arduino, labview, smart home, wireless, xbee, zigbee. I. INTRODUCTION Home automation within the recent years has seen much awaited progress. Although the technology is present for quite some time but the recent advancements in the field of signal acquisition and computer manipulations has really helped the process automation industry. Home automation is actually a branch of automation. Automation systems use different kinds of instrument to sense a change or anomaly in the behavior of a plant and then take the necessary action against the detected change. [1] Home automation systems can detect and identify a change and then adjust the light intensity, room temperature or control opening or closing of drapes based on the logic set by the user. These type of features make the home automation smart, because it is making decisions on its own. A user can set manually the number of changes to detect and then take the required action according to the detected change. All these type of features of a home automation system can make the life easier of elderly or those who are physically challenged. The main controller of the home automation system is LabVIEW. The input data from different type of sensors is acquired by Arduino UNO wirelessly with the help of XBee and manipulated in LabVIEW. These connect directly with Arduino UNO which feeds the data to LabVIEW. Different programs are made in LabVIEW which after processing the signal, takes the necessary action by generating a signal at the output. This signal is wirelessly transmitted with the help of an XBee. Another XBee is connected at the load end acting as a router. It receives the signal and triggers the relay circuit to change the state of the load. Fig. 1. Overview of the automation system 20

2 The user gets a graphical interface to interact with different energy loads around the house. This gives complete control over the appliances and the user can turn them on or off or can even schedule time to dim the lights when needed. II. DATA ACQUISITION CARDS Data Acquisition cards acts as a bridge between the real physical world and the digital world. It digitizes the incoming data so that the computer can interpret them. Data Acquisition cards are used to process the physical quantities after they have been transformed into electrical signals by sensing instrument. As newer technology has arrived, Data Acquisition (DAQ) cards with more resolution and input/output ports are available in the market. We can then exploit the displaying and processing capabilities of a PC to further analyze the acquired data. Even though the technology advances has brought in new techniques, the basic structure of every DAQ card is almost the same. Every DAQ contains a signal conditioning circuitry which is comprised of an amplifier and analog to digital converter, input/output ports and microcontroller or microprocessor. Data Acquisition Devices are available in different types, mainly characterized by IO (input/output) ports, sampling rate, resolution and cost. DAQ devices are interfaced with computer in a number of different ways. Most of the DAQ devices are PCI (Peripheral Component Interconnect) and some are designed for mounting in board slots on a computer motherboard. Data Acquisition device interfaces with computer and exploits the processing power and display capabilities of the PC. Usually a software package like NI LABVIEW, NI Measurement Studio, Microsoft Visual C/C++, Visual Basic etc. is used to communicate and manipulate the acquired data. Thus it offers powerful, flexible and economical measurement solution. [2] A. Arduino UNO as DAQ card Arduino UNO is a USB 2.0 and 3.0 compatible device. It is used in multitude of projects. The Arduino UNO is mainly sold as microcontroller board based on ATmega 328 chip. Although the UNO can be used as DAQ card, but its sampling rate is much lower than the NI DAQ cards. The maximum sampling rate that the UNO can achieve is about 5kSamples/sec. The Arduino UNO has an ADC with 10-bit resolution. It communicates through serial port by using its 0 (RX) and 1 (TX) pins. RX pin is used to receive and TX pins is used to transmit the data. Although the number of analog channels is less than that of a NI DAQ card, but it is inexpensive and is easily available. The only downside is the slow sampling rate (30 Samples/sec) and the difficulty in interfacing the Arduino UNO with LabVIEW. [3] III. COMMUNICATION The XBee series 2 chip can be used to implement different types of ZigBee standardized mesh networking The ZigBee mesh network is unsurpassed in low power scenarios. The Xbees are further divided in XBees and Xbees-Pro versions. The only difference between them is that in Pro versions power transmission capacity is higher. The XBee has the ability of routing as it can be used transmit data to a series of other radios to its destination point. So one XBee connected with Arduino UNO and LabVIEW can communicate with the rest of the XBees in the network, each connected with load. It also has the ability to repair the mesh if it finds a missing or broken link. The XBee module connects to a host device through a logic level asynchronous port. Using its serial port XBee can connect to any logic and voltage compatible UART (Universal Asynchronous Receiver Transmitter). Fig. 2. A typical ZigBee network A. API Frame Types In a frame type arrangements there are subarrangements which tell about different types of data that can be send or received from XBee. After looking at first four bytes we can conclude about frame type, starting of a frame and how long that frame is going to be. There are many API frame types designed for XBee but only Remote AT Command Request is discussed, as it fulfills the need of the automation system. B. Remote AT Command Request This mode is used to send commands to the receiving XBee from the coordinator wirelessly. The coordinator should be in API mode and Router in AT mode. One application of this mode is to toggle output of receiving 21

3 XBee from High to Low. It means that we are able to utilize relay circuitry to switch our load end devices over the air. TABLE I. XBEE COMMANDS Byte Example Description 0 0x7E Start byte - Indicate beginning of data time 1 0x00 Length Number of bytes 2 0x10 3 0x17 Frame type 0x17 means this is a AT command request 4 0x52 Frame ID Command sequence number 5 0x00 6 0x13 64-bit Destination Address (Serial 7 0xA2 Number) 8 0x00 MSB is byte 5, LSB is byte x40 0x = Coordinator 10 0x77 0x FFFF = Broadcast 11 0x9C 12 0x xFF Destination Network Address 14 0xFE (Set to 0xFFFE to send a broadcast) 15 0x02 Remote command options (set to 0x02 to apply changes immediately) 16 0x44(D) AT Command Name (Two ASCII 17 0x02(02) characters) 18 0x04 Command Parameter 19 0xF5 Checksum Byte 0 indicates the start of the byte which is 7E and byte 1 and 2 informs about start of byte which is 0 and length of frame which is 16 bytes long respectively. All the numbers written here are in hexadecimal as XBee is programmed to recognize numbers in hexadecimal. Byte 3 gives information about frame type and 17 is an AT command request. Byte 4 is Frame ID which acknowledges whether the other side has received the information or not. The next 8 bytes are to write the serial address of the destination radio. It can be set FFFF to set it as broadcast meaning it will connect to nearest available XBee. The next two bytes are recipient s network address and setting it too FFFE will make it a broadcast. The next byte is about remote command options and setting it to 02 will allow the XBee to make changes immediately. The byte 16 and 17 are going to be the commands send to the remote XBee. The byte 18 contains any parameters to be set. The last 19th byte is checksum which is needed to be accurate otherwise XBee won t perform any function it was assigned to do. It is the sum of bytes after the byte length. [4] IV. LABVIEW The smart home control system has been divided into five parts or subsystems. Each subsystem can be taken out from the network without affecting other subsystems functionality. All these subsystems can be accessed over the internet and desired variation can be achieved. The first subsystem is the external lighting system. It controls all the external lighting around the house. The second subsystem is the internal lighting system which basically controls the ceiling lighting. The third subsystem is the fire alarm system. It detects the presence of fire and warns the user in pre-programmed way. The fourth subsystem is the security unit of the house. It is basically a burglar alarm system. The fifth subsystem is the temperature control of the system and can be adjusted according to user s desire. [5] Fig. 3. Block Diagram of LabVIEW controlled applications A. External Lighting system The external lighting control system developed in LabVIEW uses a light dependent resistor (LDR) to sense the light. The system automatically turns on or off the lights depending upon the readings taken by sensor. On pressing the automatic switch the system automates the light control. A potential divider is set up at the sensors end and a voltage change occurs at the sensors end with the change in intensity of light because LDR s resistance increases with a decrease in light and it decreases as light intensity increases. Thus as potential drop across LDR varies goes below than 3.5v the system turns on the light and when it goes above the particular threshold 22

4 then the lights are turned off. The graphical interface shows a LED which shows the current status of lights that whether they are turned on or off. Moreover the user is also provided with a manual switch to change the status of lights at his or her own will. The system also shows a waveform chart continuously detecting the change in potential drop across the LDR. Moreover a stop switch is present to turn off the system in case of a malfunctioning. waveform chart continuously plots the data being received from the PIR sensor. An emergency stop switch is provided to turn off the system in case of a problem. Fig. 5. Front panel of internal lighting system Fig. 4. Front panel of external lighting system In the back panel the programming for this system is done. Initially the settings for the communication port are done. The Baud rate is kept at Then after initializing the communication port LabVIEW takes input from Arduino UNO card and upon receiving this input compares it with a threshold i.e. if the input is less than 0.3v then a Boolean true occurs but if input is greater than 0.3v then a Boolean false occurs. On receiving a Boolean true serial write is performed. A string is serially written into Arduino and then Arduino acts accordingly. On receiving a Boolean false another string is written which tells Arduino to turn off the system for the particular time being. After this the session is closed. B. Internal Lighting system The internal lighting system uses PIR sensor to detect motion and switch on or off the lights in the room. PIR motion sensor generates a pulse of 3.3v whenever motion is detected. On detection of this pulse the system turns on the lights. Moreover the user is provided with a scheduler to control the time of the day for which the lights should be automatically controlled. Apart from this time the user can manually change the state of lights with the switch provided in the graphical interface. A light indicator is also present which indicates the current state of lights so that the user will be aware that whether the lights are on or off in the particular room. A In the back panel firstly the communication port is initialized. LabVIEW then receives the analog input and then uses a greater than or equal to block to compare the input with a threshold of 3.3v. If input is greater than or equals to 3.3v a Boolean true occurs. When Boolean true is present the output is turned on for a particular time being (as selected by the user) regardless of the input state during that time instance. After that time instance the input is sampled again. Upon receiving a Boolean false again a string is written which tells Arduino to turn off the system for the particular time being. The whole system is placed in a while loop so that the whole system keeps repeating unless the emergency stop is pressed. C. Fire Alarm System The fire alarm system consists of a smoke detector. The smoke detector will send a signal on detection of smoke and then LabVIEW will turn on the alarm to indicate that there is an emergency. Moreover this system will send an or SMS to the user warning him about the situation. Furthermore solenoid valves will be installed in the house and they will turn on to help extinguish the fire. A LED is present on the interface which will start blinking in case of emergency alarming the user visually. In the back panel input is received by LabVIEW and then the input is compared through a greater than or equal to block with a value of 2v. The serial write is placed in a case structure. In case of a Boolean true the system maintains this true state for a particular time instant. During this time instant the alarm will stay on. LabVIEW will send a particular string to Arduino in case of a true and a different string in case of a false. Upon receiving this string Arduino will send corresponding signal to transceivers. 23

5 D. Burglar Alarm This system uses a PIR sensor which will detect motion in case of a forced entry in the house. In detection of entry the sensor will send a pulse of 3.3v. The burglar alarm system in LabVIEW will detect this pulse and turn on the alarm to make the owner aware of the condition. A LED will also start blinking on the main screen indicating the presence of a burglar in the house. This system can also be capable of sending a short message to the user warning him of the condition. E. Temperature Control System LM35 is used as a temperature sensor in the temperature control system. As temperature changes LM35 produces a change in the voltage level which is then used by the LabVIEW to decide whether temperature is increasing or decreasing. Then by comparing the voltage output of sensor to a particular threshold LabVIEW decides whether to turn on the heaters or the air-conditioners. The front panel consists of a thermometer indicating the temperature changes occurring. There are two LEDs one indicating the state of heaters and the other indicating the state of airconditioners. A shutdown switch is present to turn off the system in case of emergency. In the back panel after initialization of communication port input is received. This input is then furthermore compared with a particular threshold as recommended by the user i.e. whether air conditioners should be working at 35C or 4 C and then after comparing, Boolean true or false is created. Upon receiving a true LabVIEW writes a particular string serially to Arduino telling the card to perform a particular function. On receiving a false LabVIEW writes a different string which tells Arduino to turn off the particular output. F. Graphical User Interface The final interface provided to the user will consist of a monitoring screen through which the user will be able to look at the current situation of the system and then will be able to perform the desired tasks. This interface will also provide the monitoring of the entire smart home system. The individual systems mentioned previously are embedded in the final interface. Fig. 6. Final GUI: Monitoring & Control G. Data Logging Fig. 7. Final GUI: Settings Panel LabVIEW also provides the facility of data logging. There will be a excel file associated with every system which will keep a complete log of the working. The data log will consist of the power consumption including the current and voltage consumed by a particular load. At the end of the day the user will be able to see the daily consumption of electricity and then plan the changes accordingly. Moreover this data logging can also indicate the excessive use of a particular item, enabling the user to take necessary action needed. H. Control across the Globe The user will be able to control this system sitting from anywhere in the world through the World Wide Web. The user will be provided with a particular URL. By using this address the user would be able to see the front panel of the system on his screen and would able to control the system. 24

6 Fig. 8. Final GUI: Accessing Front Panel through internet browser V. RESULTS The system was implemented to control the electrical appliances of a room which include light and HVAC systems. The test was conducted for two days after which following results depicted in diagram were recorded. Fig. 9. Energy usage comparison of a Normal House vs Automated House VI. CONCLUSION This paper presents a novel technique to implement a smart home automation system which is both affordable and can be easily replicated with easily available equipment like Arduino UNO and XBees. The automation system is based on a star network and each subsystem communicates with the central control. This eliminates interference and we can take down any subsystem for maintenance without affecting the working of other subsystems in the automation system. The automation system is controlled through LabVIEW software and the accessibility of data over the internet enables the user to access the system from anywhere in the world. REFERENCES [1] ABI Research, 1.5 Million Home Automation Systems Installed in the US This Year, [2] H. Halvorsen, Data Acqusition in LabVIEW, Telemark University College, Porsgrunn, Norway, August [3] M. Margolis, Arduino Cookbook, 1 ed. Sebastopol, CA: O'Reilly & Associates, [4] R. Faludi, Building wireless sensor networks, Beijing: O'Reilly & Associates, [5] B. Hamed, Design & Implementation of Smart House Control Using LabVIEW, vol. 1, issue 6, IJSCE, January [6] Sleman, A.; Alafandi, M.; Moeller, Integration of Wireless Fieldbus and Wired Fieldbus for Health Monitoring ; R.;Consumer Electronics, 2 9. ICCE '09. Digest of Technical Papers International Conference on Jan Page(s):1 2. [7] Van Nguyen, T.; Jin Gook Kim; Deokjai Choi, "ISS: The Interactive Smart home Simulator," Advanced Communication Technology, ICACT th International Conference on, vol.03, no., pp , Feb [8] Standard for a Precision Clock Synchronization Protocol for Networked Measurement and Control Systems, IEEE Std [9] IEEE Standard for local and metropolitan area networks Media Access Control (MAC) Bridges and Virtual Bridged Local Area Networks, IEEE Std 802.1Q [10] LabVIEW User Manual, April 2003 Edition, National Instruments [11] 25

Wireless Sensor Network Based Bank Monitoring System Using LabVIEW

Wireless Sensor Network Based Bank Monitoring System Using LabVIEW Proceedings of the 2015 International Conference on Industrial Engineering and Operations Management Dubai, United Arab Emirates (UAE), March 3 5, 2015 Wireless Sensor Network Based Bank Monitoring System

More information

Real Time Smart House Data Logging System Using LabVIEW

Real Time Smart House Data Logging System Using LabVIEW Real Time Smart House Data Logging System Using LabVIEW Pooja Whon 1, Prof. V. M. Kulkarni 2 P.G. Student, Department of Electronics & communication, MIT, A BAD, Maharashtra, India 1 Associate Professor,

More information

Design and Development of Industrial Pollution Monitoring System using LabVIEW and GSM

Design and Development of Industrial Pollution Monitoring System using LabVIEW and GSM Design and Development of Industrial Pollution Monitoring System using LabVIEW and GSM Dr. Channappa Bhyri¹, Eliyaz Ahmed² 2 Student, Dept. of Electronics and Instrumentation, PDACE, Kalaburgi, Karnataka,

More information

LPG GAS LEAKAGE DETECTION, MONITORING AND CONTROL USING LabVIEW

LPG GAS LEAKAGE DETECTION, MONITORING AND CONTROL USING LabVIEW LPG GAS LEAKAGE DETECTION, MONITORING AND CONTROL USING LabVIEW M.J.Kesavan 1, R.Rajesh Kannan 2,S.Vijay vishwanath 3, P.Sathya 4. UG Students, Instrumentation & control engg, Asst. professor, Instrumentation

More information

Homework 5: Theory of Operation and Hardware Design Narrative

Homework 5: Theory of Operation and Hardware Design Narrative ECE 477 Digital Systems Senior Design Project Rev 8/09 Homework 5: Theory of Operation and Hardware Design Narrative Team Code Name: DijiJock Home Security Group No. 7 Team Member Completing This Homework:

More information

Smart Home: Controlling and Monitoring Households Appliances Using Gsm Network

Smart Home: Controlling and Monitoring Households Appliances Using Gsm Network Computer Engineering and Applications Vol. 5, No. 2, June 2016 Smart Home: Controlling and Monitoring Households Appliances Using Gsm Network Budi Rahmadya, Fahrul Ghazi, Derisma Department of Computer

More information

Construction of Wireless Fire Alarm System Based on ZigBee Technology

Construction of Wireless Fire Alarm System Based on ZigBee Technology Available online at www.sciencedirect.com Procedia Engineering 11 (2011) 308 313 The 5 th Conference on Performance-based Fire and Fire Protection Engineering Construction of Wireless Fire Alarm System

More information

GSM Based Computer Lab Security System Using PIR Sensors

GSM Based Computer Lab Security System Using PIR Sensors Available Online at www.ijcsmc.com International Journal of Computer Science and Mobile Computing A Monthly Journal of Computer Science and Information Technology ISSN 2320 088X IMPACT FACTOR: 6.017 IJCSMC,

More information

[Patil* et al., 5(7): July, 2016] ISSN: IC Value: 3.00 Impact Factor: 4.116

[Patil* et al., 5(7): July, 2016] ISSN: IC Value: 3.00 Impact Factor: 4.116 IJESRT INTERNATIONAL JOURNAL OF ENGINEERING SCIENCES & RESEARCH TECHNOLOGY INTELLIGENT LIGHTING SYSTEM WITH ENERGY EFFICIENCY Neha Patil*, Prof.A.C.Wani * P. G.Student, M.E. [Digital Electronics], SSBT

More information

Open Source Home Security System

Open Source Home Security System Open Source Home Security System Final Report ECE 410: Senior Project By: Allen Chu March 28, 2012 Project Advisor: Dr. John Ventura, PE Table of Contents Title 1 Table of Contents 2 1. Abstract 3 2. Customer

More information

A Novel Approach to Garbage Management Using Internet of Things for Smart Cities

A Novel Approach to Garbage Management Using Internet of Things for Smart Cities e-issn 2455 1392 Volume 2 Issue 5, May 2016 pp. 348 353 Scientific Journal Impact Factor : 3.468 http://www.ijcter.com A Novel Approach to Garbage Management Using Internet of Things for Smart Cities Kasliwal

More information

Microcontroller based design for Tele-sensing and extinguishing fire

Microcontroller based design for Tele-sensing and extinguishing fire Microcontroller based design for Tele-sensing and extinguishing fire Hany abdelhady Almedhegi 1, Ameen babekr abdelnaby 2, Abdelrasoul Jabar Alzubaidi 3 1 Sudan Academy of Sciences (SAS); Council of Engineering

More information

Automatic Customer Counter and Payment Tool for Shopping Centers and commercial spaces

Automatic Customer Counter and Payment Tool for Shopping Centers and commercial spaces Automatic Customer Counter and Payment Tool for Shopping Centers and commercial spaces Said Ghalleb 1 1Embedded Systems Student, Electrical Engineering Dept., Higher Institute of Technological Studies

More information

Temperature Data Logging

Temperature Data Logging . Temperature Data Logging Making the right choice with a Data Acquisition System There are many ways to make temperature measurements. The simplest method is to insert a temperature probe into a device

More information

IOT Based Intelligent Bin for Smart Cities

IOT Based Intelligent Bin for Smart Cities IOT Based Intelligent Bin for Smart Cities Meghana K C Department of Electronics & Communication Engineering S. J. B Institute of Technology Bengaluru, India kccmmeghana@gmail.com Dr. K R Nataraj Department

More information

Android Controlled Fire Fighting Robot

Android Controlled Fire Fighting Robot IJSTE - International Journal of Science Technology & Engineering Volume 3 Issue 09 March 2017 ISSN (online): 2349-784X Android Controlled Fire Fighting Robot S. Sakthi Priyanka R. Sangeetha Department

More information

Smart Gas Booking and LPG Leakage Detection System

Smart Gas Booking and LPG Leakage Detection System IOSR Journal of Computer Engineering (IOSR-JCE) e-issn: 2278-0661,p-ISSN: 2278-8727 PP 09-13 www.iosrjournals.org Smart Gas Booking and LPG Leakage Detection System Halavva Patil 1, Shreedhar Niradi 2,

More information

Applications of Smart Home system for disabled people for using wireless network

Applications of Smart Home system for disabled people for using wireless network IOSR Journal of Electrical and Electronics Engineering (IOSR-JEEE) e-issn: 2278-1676, p-issn: 2320-3331, Volume 13, Issue 4, Ver. XX (Jul. Aug. 2018), PP XX-XX Applications of Smart Home system for disabled

More information

DEVELOPMENT OF WIRELESS GAS SENSING SYSTEM FOR HOME SAFETY

DEVELOPMENT OF WIRELESS GAS SENSING SYSTEM FOR HOME SAFETY DEVELOPMENT OF WIRELESS GAS SENSING SYSTEM FOR HOME SAFETY T.H.Mujawar, M.S.Kasbe, S.S.Mule and L.P.Deshmukh Department of Electronics Science, Solapur University, Solapur, M.S. India ABSTRACT Present

More information

Design of Intelligent Alarm System Based on GSM Network Shun Qing XU

Design of Intelligent Alarm System Based on GSM Network Shun Qing XU Applied Mechanics and Materials Online: 2013-08-30 ISSN: 1662-7482, Vols. 373-375, pp 1578-1582 doi:10.4028/www.scientific.net/amm.373-375.1578 2013 Trans Tech Publications, Switzerland Design of Intelligent

More information

Design and Development of Gas Leakage Monitoring System

Design and Development of Gas Leakage Monitoring System Design and Development of Gas Leakage Monitoring System using Arduino and ZigBee Huan Hui Yan Faculty of Electrical and Electronics Engineering Universiti Malaysia Pahang Kampus Pekan, 266 Pekan, Pahang

More information

International Journal of Computer Engineering and Applications, Volume XII, Special Issue, March 18, ISSN

International Journal of Computer Engineering and Applications, Volume XII, Special Issue, March 18,   ISSN Birdawade Sonal 1,Gawade Ujwala 2, Shaikh Ayub 3, Patil Prajkta 4,Panchal Jagruti 5,Gunaware Nilesh 6 Department of Computer Engineering Department of Computer Engineering H.S.B.P.V.T s COE, Kashti ABSTRACT:

More information

Break-in Detector and Alarm System

Break-in Detector and Alarm System EE 318, Electronic Design Lab report, EE Dept, March 2007 Break-in Detector and Alarm System Group No. : B3 Abhijit Gupta(04007004) Chirag Singla(04007005)

More information

Petrol Bunk Automation with Prepaid Card using GSM Identification

Petrol Bunk Automation with Prepaid Card using GSM Identification Petrol Bunk Automation with Prepaid Card using GSM Identification G.Janani 1 1 B.E-Electronics and Communication Engineering, A.V.C. College of Engineering, Mannanmpandal Abstract: In current days fuel

More information

Web Services are based on Apache and Tomcat servers. The html/jsp (tags, beans) are fully customisable and extendable.

Web Services are based on Apache and Tomcat servers. The html/jsp (tags, beans) are fully customisable and extendable. New thinking Sentus Automation is able to control and manipulate data at ease whilst delivering a low cost per point return. XML interface: Information can be exported/viewed by an unlimited number of

More information

Cadence Design of clock/calendar using 240*8 bit RAM using Verilog HDL

Cadence Design of clock/calendar using 240*8 bit RAM using Verilog HDL Cadence Design of clock/calendar using 240*8 bit RAM using Verilog HDL K.R.N.Karthik #1, M.Nagesh Babu #2, Fazalnoorbasha #3 #1 Student of VLSI Systems Research Group, Department of Electronics and Communication

More information

Design of Humidity Monitoring System Based on Virtual Instrument

Design of Humidity Monitoring System Based on Virtual Instrument Available online at www.sciencedirect.com Procedia Engineering 24 (2011) 759 763 2011 International Conference on Advances in Engineering Design of Humidity Monitoring System Based on Virtual Instrument

More information

Research on the Monitor and Control System of Granary Temperature and Humidity Based on ARM

Research on the Monitor and Control System of Granary Temperature and Humidity Based on ARM Research on the Monitor and Control System of Granary Temperature and Humidity Based on ARM Liu Yang 1, Xinrong Cheng 2, Zhijie Jiang 3, and Zhijun Ren 1 1 Engineering College, China Agricultural University,

More information

6367(Print), ISSN (Online) Volume (IJCET) 3, Issue 2, July- September (2012), IAEME

6367(Print), ISSN (Online) Volume (IJCET) 3, Issue 2, July- September (2012), IAEME INTERNATIONAL International Journal JOURNAL of Computer OF Engineering COMPUTER and Technology ENGINEERING (IJCET), & ISSN TECHNOLOGY 0976 6367(Print), ISSN 0976 6375(Online) Volume (IJCET) 3, Issue 2,

More information

Figure 1. Proper Method of Holding the ToolStick. Figure 2. Improper Method of Holding the ToolStick

Figure 1. Proper Method of Holding the ToolStick. Figure 2. Improper Method of Holding the ToolStick CAN OBD READER REFERENCE DESIGN KIT USER GUIDE 1. Standard ToolStick Handling Recommendations The ToolStick Base Adapter and daughter cards are distributed without any protective plastics. To prevent damage

More information

International Journal of Scientific & Engineering Research Volume 9, Issue 2, February-2018 ISSN

International Journal of Scientific & Engineering Research Volume 9, Issue 2, February-2018 ISSN 62 IOT Based Air Pollution Monitoring System Harsh N. Shah 1, Zishan Khan 2, Abbas Ali Merchant 3, Moin Moghal 4, Aamir Shaikh 5, Priti Rane 6 1, 2, 3, 4,5 Student, Diploma in Computer Engineering, BGIT,

More information

Application of OPC in the Intelligent Building System Integration

Application of OPC in the Intelligent Building System Integration Application of OPC in the Intelligent Building System Integration Jie Chen Dongying Vocational College Dongying 257091, P.R.China Xiuli Sun The control system education of Jinan university Jinan 250022,

More information

Implementation of Auto Car Washing System Using Two Robotic Arms

Implementation of Auto Car Washing System Using Two Robotic Arms Implementation of Auto Car Washing System Using Two Robotic Arms Pranoti Utekar 1, Sayali Naik 2, Monika Wadekar 3, S.G. Watve 4 U.G. Students, Department of Electronics and Telecommunication Engineering,

More information

BURGLAR ALARM USING ARDUINO AND PIR SENSOR WITH SMS ALERT Burgoji Santhosh Kumar 1, S.Ramesh 2 1

BURGLAR ALARM USING ARDUINO AND PIR SENSOR WITH SMS ALERT Burgoji Santhosh Kumar 1, S.Ramesh 2 1 BURGLAR ALARM USING ARDUINO AND PIR SENSOR WITH SMS ALERT Burgoji Santhosh Kumar 1, S.Ramesh 2 1 Assistant Professor, Dept of ECE, Anurag Group of Institutions, Telangana, India. 2 Assistant Professor,

More information

ENACTMENT OF SCADA SYSTEM FOR JUDICIOUS DWELLING

ENACTMENT OF SCADA SYSTEM FOR JUDICIOUS DWELLING Int. J. Engg. Res. & Sci. & Tech. 2014 Mohammed Tabrez Ud Doula and G Kalaimagal, 2014 Research Paper ISSN 2319-5991 www.ijerst.com Vol. 3, No. 2, May 2014 2014 IJERST. All Rights Reserved ENACTMENT OF

More information

ECE Department, SVCET, Chittoor, Andhra Pradesh, India. Department of ECE, S. V. College of Engineering, Tirupati, Andhra Pradesh, India

ECE Department, SVCET, Chittoor, Andhra Pradesh, India. Department of ECE, S. V. College of Engineering, Tirupati, Andhra Pradesh, India 2018 IJSRSET Volume 4 Issue 4 Print ISSN: 2395-1990 Online ISSN : 2394-4099 Themed Section : Engineering and Technology Implementation of Smart Home Automation with Enhanced Security M. Ummay Hagera *1,

More information

XBee Based Industrial And Home Security System

XBee Based Industrial And Home Security System XBee Based Industrial And Home Security System Introduction: Home security is one of the essential requirements for everyone nowadays due to the high rate of crimes. People are intended to take certain

More information

Design of Intelligent Home Alarm System Based on ARM

Design of Intelligent Home Alarm System Based on ARM Abstract Design of Intelligent Home Alarm System Based on ARM Wei Ni 1, a, Kaige Yang 1, Xiaohe Zhao 1, Wenjuan Li 1, Jinghua Liu 1 1 Shandong University of Science and Technology, Qingdao 266590, China.

More information

IOT ENABLED FOREST FIRE DETECTION AND ONLINE MONITORING SYSTEM

IOT ENABLED FOREST FIRE DETECTION AND ONLINE MONITORING SYSTEM e-issn 2455 1392 Volume 3 Issue 5, May 2017 pp. 50 54 Scientific Journal Impact Factor : 3.468 http://www.ijcter.com IOT ENABLED FOREST FIRE DETECTION AND ONLINE MONITORING SYSTEM (BY USING ATMEGA 328-P

More information

Construction of An Automatic Power Switch using Infrared Motion Sensor

Construction of An Automatic Power Switch using Infrared Motion Sensor Journal of Informatics and Mathematical Sciences Vol. 9, No. 2, pp. 331 337, 2017 ISSN 0975-5748 (online); 0974-875X (print) Published by RGN Publications http://www.rgnpublications.com Proceedings of

More information

FIRECLASS Networking. Addressable Fire Alarm Control Panels From Software version 21. Product Application and Design Information FC-A-FCNET-A

FIRECLASS Networking. Addressable Fire Alarm Control Panels From Software version 21. Product Application and Design Information FC-A-FCNET-A FIRECLASS Networking Addressable Fire Alarm Control Panels From Software version 21 Product Application and Design Information FC-A-FCNET-A Doc. version 1 23. March 2012 FIRECLASS. Hillcrest Business Park,

More information

Design and Development of General Purpose Alarm Generator for Automated System

Design and Development of General Purpose Alarm Generator for Automated System Design and Development of General Purpose Alarm Generator for Automated System Amit Pandey 1 1 CSIR-Central Scientific Instruments Organisation India Abstract: This paper presents a model for general purpose

More information

C. The system shall be capable of turning luminaires on/off (where supported by the luminaire) as well as full range dimming.

C. The system shall be capable of turning luminaires on/off (where supported by the luminaire) as well as full range dimming. SECTION 260943 SPECIFICATIONS - Wireless Network Lighting Controls. PART 1 - GENERAL 1.1 RELATED DOCUMENTS 1.2 SUMMARY AND KEY SYSTEM DIFFERENTIATORS A. The lighting control system specified herein shall

More information

Designing A Home Automation System by Using RF Receivers

Designing A Home Automation System by Using RF Receivers Designing A Home Automation System by Using RF Receivers Md. Nasfikur R Khan 1, Md. Rakib Hasan 2 1 Department of Electrical and Electronic Engineering, Independent University, Dhaka, Bangladesh 2 Department

More information

Remote Environment Monitoring & Detection Tribot

Remote Environment Monitoring & Detection Tribot International Refereed Journal of Engineering and Science (IRJES) ISSN (Online) 2319-183X, (Print) 2319-1821 Volume 1, Issue 3(November 2012), PP.01-08 Remote Environment Monitoring & Detection Tribot

More information

RS485 MODBUS Module 8AI

RS485 MODBUS Module 8AI Version 1.4 15/04/2013 Manufactured for Thank you for choosing our product. This manual will help you with proper support and proper operation of the device. The information contained in this manual have

More information

Intelligent Fire Detection and Visual Guided Evacuation System Using Arduino and GSM

Intelligent Fire Detection and Visual Guided Evacuation System Using Arduino and GSM Intelligent Fire Detection and Visual Guided Evacuation System Using Arduino and GSM Naresh Kumar 1,Poonam Kumari 2 1 M.Tech(Instrumentation), UCIM, Panjab University, Chandigarh, India 2 Assistant Professor,

More information

SAFETY PRE-ALARM MONITOR SYSTEM BASED ON GSM AND ARM

SAFETY PRE-ALARM MONITOR SYSTEM BASED ON GSM AND ARM Int. J. Elec&Electr.Eng&Telecoms. 2015 J M Bhagyalakshmi, 2015 Research Paper ISSN 2319 2518 www.ijeetc.com Vol. 4, No. 1, January 2015 2015 IJEETC. All Rights Reserved SAFETY PRE-ALARM MONITOR SYSTEM

More information

Cost Effective Home Automation System

Cost Effective Home Automation System Cost Effective Home Automation System Kiran Buktare 1, Ganesh Chainpure 2, Onkar Mamilwad 3, Pradip More 4 and R. A. Patil 5 1,2,3,4 B.Tech. Students, Department of Electrical Engineering, V.J.T.I., Mumbai

More information

Virtual Boundary System Using Passive Infrared Sensor

Virtual Boundary System Using Passive Infrared Sensor International Journal of Education and Science Research Review E-ISSN 2348-6457 Volume-3, Issue-2 April- 2016 Virtual Boundary System Using Passive Infrared Sensor Saptarshi Gupta Assistant Professor SRM

More information

Volume Measuring System Using Arduino for Automatic Liquid Filling Machine

Volume Measuring System Using Arduino for Automatic Liquid Filling Machine Volume Measuring System Using Arduino for Automatic Liquid Filling Machine M.H. Muhammad Sidik 1 and S.A. Che Ghani 2 1 Universiti Kuala Lumpur International College, Seksyen 14, Jalan Teras Jernang, 43650

More information

REMOTE CONTROL AND MONITORING OF LANDMINES DETECTION ROBOTIC SYSTEM

REMOTE CONTROL AND MONITORING OF LANDMINES DETECTION ROBOTIC SYSTEM REMOTE CONTROL AND MONITORING OF LANDMINES DETECTION ROBOTIC SYSTEM 1 ABDALLAH MOKHTAR, 2 CHOI SEONG JOO, 3 MANAR MOHAISEN 1,2 Department Mechanical Engineering, Korea University of Technology and Education

More information

UNIVERSAL REMOTE CONTROL SYSTEM FOR KITCHEN AUTOMATION USING IoT

UNIVERSAL REMOTE CONTROL SYSTEM FOR KITCHEN AUTOMATION USING IoT . UNIVERSAL REMOTE CONTROL SYSTEM FOR KITCHEN AUTOMATION USING IoT Amita Thakare 1 Pooja R. Gandhe 2 1 Professor, Dept. of ECE, Priyadarshini Bhagwati College of Engineering. Nagpur, Maharashtra, India

More information

USER MANUAL FOR OPERATING SYSTEM

USER MANUAL FOR OPERATING SYSTEM P2262 ALARM PANEL USER MANUAL FOR OPERATING SYSTEM 21765-07 September 1999 Associated Controls (Aust) PTY. LTD. 29 Smith Street, Hillsdale, NSW, 2036. PH (02) 9311 3255, FAX (02) 9311 3779 Page 1 of 177

More information

OPERATOR S MANUAL MODEL AP15/AP15-1/AP15-2 PC-ALARM PANEL

OPERATOR S MANUAL MODEL AP15/AP15-1/AP15-2 PC-ALARM PANEL ap15_2manual04/22/13 Page 1 4/22/2013 1 Serial Number : Option: OPERATOR S MANUAL MODEL AP15/AP15-1/AP15-2 PC-ALARM PANEL Micro Seven, Inc. 1095-K N.E. 25th Hillsboro, OR 97124 U.S.A. phone: 503-693-6982

More information

FlameGard 5 MSIR HART

FlameGard 5 MSIR HART FlameGard 5 MSIR HART Multi-Spectral Infrared Flame Detector HART Communication with the FlameGard 5 Multi-spectral Infrared Detector The information and technical data disclosed in this document may be

More information

Smart Personal Security Alert Walking Stick For Visually Challenged People

Smart Personal Security Alert Walking Stick For Visually Challenged People Smart Personal Security Alert Walking Stick For Visually Challenged People Punitha.V Revathi.S Sathiya Priya.B.M Department of Information Technology, Adhiyamaan College of Engineering, Hosur, Tamilnadu,

More information

Room Temperature Control and Fire Alarm/Suppression IoT Service Using MQTT on AWS

Room Temperature Control and Fire Alarm/Suppression IoT Service Using MQTT on AWS Room Control and Fire Alarm/Suppression IoT Service Using MQTT on AWS Do-Hun Kang, Min-Sung Park, Hyoung-Sub Kim, Da-young Kim, Sang-Hui Kim, Hyeon-Ju Son, * Sang-Gon Lee Dong-Seo University, Korea, {kadihi@naver.com,

More information

Group A Carlos Castro, Courtnie Coleman, Lucas Plager, Patrick Schexnayder

Group A Carlos Castro, Courtnie Coleman, Lucas Plager, Patrick Schexnayder Group A Carlos Castro, Courtnie Coleman, Lucas Plager, Patrick Schexnayder Motivation While technology is evolving at a rapid pace, the fire alarm has not seen any innovation. The smoke and fire alarm

More information

ProStar 325 UV-Vis Detector

ProStar 325 UV-Vis Detector Varian, Inc. 2700 Mitchell Drive Walnut Creek, CA 94598-1675/USA Star Chromatography Workstation Version 6 ProStar 325 UV-Vis Detector Control Software Varian, Inc. 2004 Printed in U.S.A. 03-914732-01:Rev.

More information

WeatherLink for Alarm Output Addendum

WeatherLink for Alarm Output Addendum WeatherLink for Alarm Output Addendum Introduction This Streaming Data Logger is designed to provide an electrical interface between a Vantage Pro or Vantage Pro2 weather station console or Weather Envoy

More information

PRESENTATION OVERVIEW OF THE DIFFERENT MODELS MONITORS

PRESENTATION OVERVIEW OF THE DIFFERENT MODELS MONITORS THZ DETECTORS OPTICAL DETECTORS POWER DETECTORS ENERGY DETECTORS PRESENTATION OVERVIEW OF THE DIFFERENT MODELS The Gentec-EO monitors come is various sizes and types to cover all applications. We have

More information

GSM BASED GARBAGE AND WASTE COLLECTION BIN OVERFLOW INDICATOR

GSM BASED GARBAGE AND WASTE COLLECTION BIN OVERFLOW INDICATOR GSM BASED GARBAGE AND WASTE COLLECTION BIN OVERFLOW INDICATOR [1] Ishwarya C, [2] Jayashree S, [3] Yesodha P [1] Department of Electronics and Communication Engineering, Prince Shri Venkateshwara Padmavathy

More information

Design of Intelligent Humidity Sensing Watering System Based on MCU

Design of Intelligent Humidity Sensing Watering System Based on MCU Advances in Intelligent Systems Research (AISR), volume 145 2017 International Conference on Electronic Industry and Automation (EIA 2017) Design of Intelligent Humidity Sensing Watering System Based on

More information

Azatrax Quad Infrared Proximity Detector Shield for ArduinoTM Uno, Mega and compatibles

Azatrax Quad Infrared Proximity Detector Shield for ArduinoTM Uno, Mega and compatibles User's Guide Azatrax Quad Infrared Proximity Detector Shield for ArduinoTM Uno, Mega and compatibles RIR4 What it is: The RIR4 has four infrared (IR) proximity detectors assembled on a circuit board with

More information

Wearable Carbon Monoxide Warning System Using Wireless Sensors

Wearable Carbon Monoxide Warning System Using Wireless Sensors IOSR Journal of Electronics and Communication Engineering (IOSR-JECE) e-issn: 2278-2834,p- ISSN: 2278-8735.Volume 9, Issue 2, Ver. VIII (Mar - Apr. 2014), PP 25-29 Wearable Carbon Monoxide Warning System

More information

Characteristics of different sensors used for Distance Measurement

Characteristics of different sensors used for Distance Measurement Characteristics of different sensors used for Distance Measurement Pavithra B. G 1, Siva Subba Rao Patange 2, Sharmila A 3, Raja S 2, Sushma S J 1 1GSSS Institute of Engineering & Technology for Women,

More information

Automobile Security System Based on Face Recognition Structure Using GSM Network

Automobile Security System Based on Face Recognition Structure Using GSM Network Advance in Electronic and Electric Engineering. ISSN 2231-1297, Volume 3, Number 6 (2013), pp. 733-738 Research India Publications http://www.ripublication.com/aeee.htm Automobile Security System Based

More information

Different types of Fire Alarm System

Different types of Fire Alarm System Different types of Fire Alarm System Conventional Fire System Generally comes with Zones. Each zone can have max 20 detectors. Addressable Fire Alarm System This comes in loops. Different manufacturer

More information

Firefighting Robot. I. Introduction

Firefighting Robot. I. Introduction Firefighting Robot Mustafa Hamza Abd-Elhamed Khalid 1 and Dr. Eltaher Mohamed Hussein 2 1 Control Engineering, Alneelain University, mustafa099935@gmail.com 2 College of Engineering, Sudan University of

More information

The Design of Temperature Control System for Vegetable Greenhouse

The Design of Temperature Control System for Vegetable Greenhouse The Design of Temperature Control System for Vegetable Greenhouse Chao Tang Electronics and Information Engineering, Changchun University of science and technology, Jilin Changchun 300, China Abstract

More information

ECO N DATE DESCRIPTION OF CHANGE CHG

ECO N DATE DESCRIPTION OF CHANGE CHG Model Number: M21E-24-DIN Description: The product is a loop powered device which controls an unsupervised dual pole output channel suitable to manage 24VAC loads. The M21E-24-DIN is micro-controller operated,

More information

WIRELESS NETWORK USER MANUAL MHz RFT-868-PIR Wireless Passive Infrared Sensor

WIRELESS NETWORK USER MANUAL MHz RFT-868-PIR Wireless Passive Infrared Sensor WIRELESS NETWORK USER MANUAL 868.3 MHz RFT-868-PIR Wireless Passive Infrared Sensor Device Specifications Power Supply: 3V (2xAAA battery) Current Draw in standby mode: 12µA Temperature Working Range:

More information

Halton SAFE / 7.14 user guide and installation instructions

Halton SAFE / 7.14 user guide and installation instructions Halton SAFE / 7.14 user guide and installation instructions VERIFIED SOLUTIONS BY H A LTO N Enabling Wellbeing Table of contents 1 System description 3 2 User Accounts 4 3 Main menu 7 3.1 Main menu - Change

More information

"Three Preventions" System Design Based On Single-Chip Microcomputer (SCM) Control Jiaxiong Wen

Three Preventions System Design Based On Single-Chip Microcomputer (SCM) Control Jiaxiong Wen 3rd International Conference on Materials Engineering, Manufacturing Technology and Control (ICMEMTC 2016) "Three Preventions" System Design Based On Single-Chip Microcomputer (SCM) Control Jiaxiong Wen

More information

Figure 1. Proper Method of Holding the ToolStick. Figure 2. Improper Method of Holding the ToolStick

Figure 1. Proper Method of Holding the ToolStick. Figure 2. Improper Method of Holding the ToolStick TOOLSTICK C8051F330 DAUGHTER CARD USER S GUIDE 1. Handling Recommendations To enable development, the ToolStick Base Adapter and daughter cards are distributed without any protective plastics. To prevent

More information

AUTOMATIC STREET LIGHT CONTROL SYSTEM USING MICROCONTROLLER

AUTOMATIC STREET LIGHT CONTROL SYSTEM USING MICROCONTROLLER AUTOMATIC STREET LIGHT CONTROL SYSTEM USING MICROCONTROLLER S.M.Ghayas Hasan 1, Fazil Alam 2, Amrish Dubey 3 1, 2 Students, Electrical Engineering Department Greater Noida Institutes of Technology, Gr.Noida,

More information

Multi Security System

Multi Security System Page 1 TRIBHUVAN UNIVERSITY INSTITUTE OF ENGINEERING Pulchowk Campus A Project Report on Multi Security System Submitted to LOCUS 2014 Team Submitted By Manish Munikar 070-BCT-520 Kritish Pahi 070-BCT-517

More information

Integrated Security Solutions

Integrated Security Solutions Integrated Security Solutions Table of Contents Control Panels 4 Keypads 8 Communication Modules 16 I/O Expanders 20 Door Control 24 Home Automation 25 RF Receivers 26 3 Our integrated security solutions

More information

II. METHODS AND MATERIALS

II. METHODS AND MATERIALS Smart Home using PLC Naveen Kumar P 1, Naveen Kumar K 2, Arvind M 3, Senthilraja S 4 1,2,3 U.G. Student, 4 Assistant Professor Department of Mechanical and Automation Engineering, Mahendra Engineering

More information

Intelligent monitoring system for automobiles

Intelligent monitoring system for automobiles RESEARCH ARTICLE OPEN ACCESS Intelligent monitoring system for automobiles M.PADMA LALITHA 1, M.MUNI KUMAR 2, K.NAGENDRA BABU 3, K.RAVI TEJA 4 Dept. of Electrical and Electronics Engineering, Annamacharya

More information

BOILED WATER TEMPERATURE MEASUREMENT SYSTEM USING PIC MICROCONTROLLER

BOILED WATER TEMPERATURE MEASUREMENT SYSTEM USING PIC MICROCONTROLLER BOILED WATER TEMPERATURE MEASUREMENT SYSTEM USING PIC MICROCONTROLLER A T. Karuppiah 1, Azha. Periasamy 2, P. Rajkumar 3 M.Phil Scholar, Dept. of Electronics and Instrumentation, Bharathiar University,

More information

Tech Data Sheet D01662GB0_Esgraf 4.1 and Configuration Server 30/2011 2/(5)

Tech Data Sheet D01662GB0_Esgraf 4.1 and Configuration Server 30/2011 2/(5) Tech Data Sheet D01662GB1_Esgraf 4.1 and Configuration Server 30/2011 1/(5) Esgraf 4.1 graphical user interface, configuration server and fire detectors contamination monitoring Esgraf 4.1 ESGRAF is a

More information

Smart Wireless Sensor

Smart Wireless Sensor Smart Wireless Sensor G7 G7 creates the IoT platform of sensor data exchange and integration 64 wireless sensors each station * temperature, humidity, analog sensors, or digital alarm Windows / ios / Android

More information

IJSRD - International Journal for Scientific Research & Development Vol. 3, Issue 01, 2015 ISSN (online):

IJSRD - International Journal for Scientific Research & Development Vol. 3, Issue 01, 2015 ISSN (online): IJSRD - International Journal for Scientific Research & Development Vol. 3, Issue 01, 2015 ISSN (online): 2321-0613 I-Home: Intelligent Home Controlling and Monitoring System using Cloud and Android Himani

More information

SM3000 Videographic Recorder. User Guide. Modbus (RTU) Communications Option

SM3000 Videographic Recorder. User Guide. Modbus (RTU) Communications Option SM3000 Videographic Recorder User Guide (RTU) Communications Option ABB The Company We are an established world force in the design and manufacture of instrumentation for industrial process control, flow

More information

Modbus TCP/IP Option Instruction Manual

Modbus TCP/IP Option Instruction Manual W A L C H E M An Iwaki America Company WebMaster Modbus TCP/IP Option Web Master WIND Modbus TCP/IP Option Instruction Manual s825v008 and higher Five Boynton Road Hopping Brook Park Holliston, MA 01746

More information

Smart Wireless Sensor

Smart Wireless Sensor Smart Wireless Sensor G7 G7 creates the IoT platform of sensor data exchange and integration 64 wireless sensors each station * temperature, humidity, analog sensors, or digital alarm Windows / ios / Android

More information

AIRPORTS. CARECALLER PowerfulSecuritySolutionsForSeriousSecurityNeeds

AIRPORTS. CARECALLER PowerfulSecuritySolutionsForSeriousSecurityNeeds AIRPORTS CARECALLER PowerfulSecuritySolutionsForSeriousSecurityNeeds CARECALLER CARECALLER Emergency Call Systems are perfect for any Airport that is concerned with the safety and security of their employees.

More information

Design of Classroom Intelligent Lighting System Based on SCM. Jiale Zheng1, a

Design of Classroom Intelligent Lighting System Based on SCM. Jiale Zheng1, a 6th International Conference on Machinery, Materials, Environment, Biotechnology and Computer (MMEBC 2016) Design of Classroom Intelligent Lighting System Based on SCM Jiale Zheng1, a 1 North China Electric

More information

INTELLIGENT FAULT IDENTIFICATION IN LED LIGHTING AND SECURITY SYSTEM USING GSM

INTELLIGENT FAULT IDENTIFICATION IN LED LIGHTING AND SECURITY SYSTEM USING GSM International Journal of Computer Network and Security(IJCNS) Vol 8. No.1 2016 Pp. 1-5 gopalax Journals, Singapore available at : www.ijcns.com ISSN: 0976-1345 INTELLIGENT FAULT IDENTIFICATION IN LED LIGHTING

More information

Paradox Integration Module Settings Guide

Paradox Integration Module Settings Guide Paradox Integration Module Settings Guide List of Terms used in Paradox Integration Module Settings Guide............. 3 Introduction into Paradox Integration Module Settings Guide............... 4 Configuration

More information

SMUGGLING PREVENTION SYSTEM FOR TREES IN FOREST USING IOT

SMUGGLING PREVENTION SYSTEM FOR TREES IN FOREST USING IOT SMUGGLING PREVENTION SYSTEM FOR TREES IN FOREST USING IOT Subhashini A 1, Shamini G 2 and Sarubashini K 3, 1 Department of Computer Science Engineering, Dhanalakshmi College of Engineering, Chennai 2 Department

More information

RF SCOUT PLUS INSTRUCTION MANUAL. Dielectric, LLC 22 Tower Rd. Raymond, ME Phone: January 2015, Rev B 1

RF SCOUT PLUS INSTRUCTION MANUAL. Dielectric, LLC 22 Tower Rd. Raymond, ME Phone: January 2015, Rev B 1 RF SCOUT PLUS INSTRUCTION MANUAL Dielectric, LLC 22 Tower Rd. Raymond, ME 04071 Phone: 800.341.9678 www.dielectric.com 21 January 2015, Rev B 1 WARNING Powering RF sensors above +30dBm (1W) will cause

More information

DTSX200 Communications(Modbus) Guide

DTSX200 Communications(Modbus) Guide User s Manual DTSX200 Communications(Modbus) Guide 4th Edition Blank Page < Introduction > i Introduction About this Manual Thank you for purchasing the DTSX200 Distributed Temperature Sensor. This document

More information

FL500 Modbus Communication Operating Manual. Order No.: /00. MSAsafety.com

FL500 Modbus Communication Operating Manual. Order No.: /00. MSAsafety.com FL500 Modbus Communication Operating Manual Order No.: 10193214/00 MSAsafety.com 1000 Cranberry Woods Drive Cranberry Township, PA 16066 A Phone 1-800-MSA-2222 Fax 1-800-967-0398 For your local MSA contacts

More information

Manage Alarms. Before You Begin CHAPTER

Manage Alarms. Before You Begin CHAPTER CHAPTER 8 Manage Alarms This chapter contains the procedures for viewing and managing the alarms and conditions on a Cisco ONS 15454. Cisco Transport Controller (CTC) detects and reports alarms generated

More information

DATA SHEET CHEETAH XI 50 INTELLIGENT SUPPRESSION CONTROL SYSTEM DESCRIPTION APPROVALS: SYSTEM OPERATION. Form No. D

DATA SHEET CHEETAH XI 50 INTELLIGENT SUPPRESSION CONTROL SYSTEM DESCRIPTION APPROVALS: SYSTEM OPERATION. Form No. D DATA SHEET CHEETAH XI 50 INTELLIGENT SUPPRESSION CONTROL SYSTEM DESCRIPTION Fike s Cheetah Xi 50 (P/N 10-071) is a state-of-the-art true intelligent digital peer-to-peer modular suppression control system.

More information

Gas Detection Instrument Based on Wireless Sensor Networks

Gas Detection Instrument Based on Wireless Sensor Networks Sensors & Transducers 2013 by IFSA http://www.sensorsportal.com Gas Detection Instrument Based on Wireless Sensor Networks 1,2,3 ANSONG FENG, 1 HONG WANG, 2 LIFENG WEI 1 Shenyang Institute of Automation,

More information

Sensor Technology. Summer School: Advanced Microsystems Technologies for Sensor Applications

Sensor Technology. Summer School: Advanced Microsystems Technologies for Sensor Applications Sensor Technology Summer School: Universidade Federal do Rio Grande do Sul (UFRGS) Porto Alegre, Brazil July 12 th 31 st, 2009 1 Outline of the Lecture: Philosophy of Sensing Thermal Sensors Chemical Sensors

More information