Guillermo Alberto Pérez Guillen Automation Home

Size: px
Start display at page:

Download "Guillermo Alberto Pérez Guillen Automation Home"

Transcription

1

2 Guillermo Alberto Pérez Guillen Automation Home

3 1. Introduction 2. Schematic Diagram 3. Electric Diagram 4. Hardware 5. Software INDEX

4 6. Photographs 7. Links This work is author s property, and has been registered on the Website with the registration code and protected under the License Creative Commons Attribution-NonCommercial-NoDerivatives 4.0

5 1. INTRODUCTION HISTORY Early home automation began with labor-saving machines. Self-contained electric or gas powered home appliances became viable in the 1900s with the introduction of electric power distribution and led to the introduction of washing machines (1904), water heaters (1889), refrigerators, sewing machines, dishwashers, and clothes dryers. In 1975, the first general purpose home automation network technology, X10, was developed. It is a communication protocol for electronic devices. It primarily uses electric power transmission wiring for signalling and control, where the signals involve brief radio frequency bursts of digital data, and remains the most widely available. By 1978, X10 products included a 16 channel command console, a lamp module, and an appliance module. According to Li et. al. (2016) there are three generations of home automation: 1) First generation: wireless technology with proxy server; 2) Second generation: artificial intelligence controls electrical devices; 3) Third generation: robot buddy who interacts with humans. BENEFITS OF SMART HOMES The benefits of the smart home are by no means limited to convenience, although this is a compelling feature. The automation of simple tasks saves us time time that could be spent on our families, our careers, or other passions, which is a strong selling proposition. Smart homes also have the potential to be greener and cheaper: water and energymonitoring tools, and programs to optimize energy consumption, could impel us to lower our water and energy usage, which could, in turn, lower our bills and reduce our carbon footprint. Automation and centralized control have serious benefits for family caregivers. By integrating home healthcare equipment, such as monitoring and diagnostic tools, smart homes could simplify the caregiving process for the hundreds of millions of adults worldwide who care for an elderly, ailing, or infirm parent or relative. For example, a smart home might allow you to monitor the movements of a relative suffering from dementia

6 PROJECT Design a Home Automation and using Arduino UNO and App Inventor. This project serves to control lamps or bulbs and other electrical or electronic devices proposed. Goals: 1. The home s lamp or light bulb is activated with a switch of the App. 2. The bedroom s lamp or light bulb is activated with a switch of the App. 3. The bathroom s lamp or light bulb is activated with a switch of the App. 4. The kitchen s lamp or light bulb is activated with a switch of the App. 5. The door s lock is controlled with a switch of the App and using a servo. 6. A fan activated with a switch of the App. 7. An alarm system is activated with a switch of the App and using a PIR motion sensor and a buzzer. 8. A light detection system is activated with a switch of the App and using a LDR sensor and 3 leds that can illuminate outdoors at night. 9. A humidity and temperature system and using a DHT11 sensor and print the values on the notifier of the App. 10. A gas detection system and using a MQ2 sensor when there s a gas leak the kitchen s lamp or light bulb is triggered and print a message on the App. 11. A voice-activated system and using speech recognizer and the microphone of the hads free and the cellular network or the wifi network.

7

8 2. SCHEMATIC DIAGRAM

9 3. ELECTRIC DIAGRAMA 4

10 4. HARDWARE The components used are as follows: Arduino UNO Bluetooth HC-05 DHT11 Sensor MQ2 Sensor PIR Motion Sensor LDR Sensor Servo Buzzer Fan Relay 5V Transistor NPN Resistances: 220, 330, 570, 1K, 10K, 100K LEDs Battery: 5 V, 3.3 V and 9V The schematic diagram and electrical diagram show me the physical and wireless connections to build this project. Arduino UNO is connected via wired to the devices: DHT11, MQ2, PIR, Buzzer, Fan, Servo, LDR, LED and HC-05. Arduino UNO board can communicates with the Smart Lights Smartphone application via wireless and using the Bluetooth HC-05. The Smart Lights Smartphone application communicates with the voice recognition system of Google via wireless through the wireless network or telephone network data. You can see the list of parts used in this project in the section Things. In the video where I show you my work you can see the tests with the hardware devices as switch on or turn off the four LEDS, door, fan, alarm and light detection system. It also shows me the values measured as humidity and temperature and gas leak alarms and flashing lamp.

11

12 5. SOFTWARE 1. Arduino program This program is developed with Arduino and is named Smart_Lights.ino, the program contains the comments of its operation and is registered in Safe Creative.

13 The operation of the Software, I divided into three parts: 1. Use of switches in the Smart Lights Smartphone application to control the following systems: light bulbs, door, fan, alarm and light detection. 2. Using voice commands to control the same devices shows in the part one. 3. Using the Arduino UNO board to control the DHT11 and the MQ2 sensors and sending data to the Smart Lights Smartphone application via Bluetooth. This code is author s property, and has been registered on the Website with the registration code and protected under the License Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 You can get the link of source code on the chapter 7.

14 Arduino UNO - Smart Lights // AUTOMATION HOME //Author Guillermo Alberto Perez Guillen #include <Servo.h> #include DHT.h #define DHTPIN 2 #define DHTTYPE DHT11 DHT dht(dhtpin, DHTTYPE); // DHT11 pin Servo servomotor; // Name of servo int pos = 5; //Hall, Bedroom, Bathroom, Kitchen, Ventilator and Alarm pins int ledpin1= 13, ledpin2= 12, ledpin3= 11, ledpin4= 10, ledpin6= 8, ledpin7= 7; const int ledpin8 = 6; // LDR pin const int analoginpin = A0; // Analog input pin that the MQ-2 is connected int sensorvalue = 0; // value read from the sensor

15 void setup() { Serial.begin(9600); dht.begin(); pinmode(ledpin1, OUTPUT); pinmode(ledpin2, OUTPUT); pinmode(ledpin3, OUTPUT); pinmode(ledpin4, OUTPUT); pinmode(ledpin6, OUTPUT); pinmode(ledpin7, OUTPUT); pinmode(ledpin8, OUTPUT); servomotor.attach(9); servomotor.write(pos); delay(5); } // initialize serial communication: // Sets the digital pins as output // Set the pin 9 as servo void loop() { int h = dht.readhumidity(); int t = dht.readtemperature(); // Save DHT11 humidity // Save DHT11 temperature sensorvalue = analogread(analoginpin); // MQ-2 sensor reading if (sensorvalue >= 500) { Serial.println( GAS LEAK ); digitalwrite(ledpin4, HIGH); // Kitchen On delay(200); digitalwrite(ledpin4, LOW); // Kitchen Off } delay(5); if (isnan(t) isnan(h)) { Serial.println( Error in the DHT sensor ); //Message of error if there aren t numbers

16 } else { delay(5); Serial.print( Humidity= ); Serial.print(h); Serial.println( %\t ); Serial.print( Temperature= ); Serial.print(t); Serial.println( *C ); } // Humidity printing // Temperature printing if (Serial.available() > 0) { int inbyte = Serial.read(); switch (inbyte) { case a : // Hall On digitalwrite(ledpin1, HIGH); case b : // Hall Off digitalwrite(ledpin1, LOW); case c : // Bedroom On digitalwrite(ledpin2, HIGH); case d : // Bedroom Off digitalwrite(ledpin2, LOW); case e : // Bathroom On digitalwrite(ledpin3, HIGH); case f : // Bathroom Off digitalwrite(ledpin3, LOW); case g : // Kitchen On

17 digitalwrite(ledpin4, HIGH); case h : // Kitchen Off digitalwrite(ledpin4, LOW); case i : // Door Open for(pos = 5; pos < 180; pos += 5) { servomotor.write(pos); delay(10); } case j : // Door Close for(pos = 180; pos>=5; pos-=5) { servomotor.write(pos); delay(5); } case k : // Ventilator On digitalwrite(ledpin6, HIGH); case l : // Ventilator Off digitalwrite(ledpin6, LOW); case m : // Alarm On digitalwrite(ledpin7, HIGH); case n : // Alarm Off digitalwrite(ledpin7, LOW); case o : // LDR On

18 digitalwrite(ledpin8, HIGH); case p : // LDR Off digitalwrite(ledpin8, LOW); default: // Turn all the LEDs off for (int thispin = 2; thispin < 7; thispin++) { digitalwrite(thispin, LOW); } delay(200); } } }

19 2. App Inventor 2 Application This application is for a cell and is developed with App Inventor 2 and is called Smart Lights and the files that compose it are: Smart_Lights.aia and Smart_Lights.apk and are registered in Safe Creative.

20 This code is author s property, and has been registered on the Website with the registration code and protected under the License Creative Commons Attribution-NonCommercial-NoDerivatives 4.0

21 You can get the link of source code on the chapter 7. Button connect

22

23 Button Light example.

24 Button Spech Recognizer

25

26 The following photos show a test. 6. PHOTOGRAPHS

27 This is the first version of my project and I m pleased because I achieve my goals. It was not so easy to do it because there are several pressures, mainly get the necessary material and have the knowledge and enough time. As designer, this project leaves me good and interesting experiences such as: 1.- Voice-activated system depends on: a) The pronunciation of voice must be loud and clear, b) To reduce external noise, c) The signal quality of the wireless telephone network must be good, and d) We must use keywords to reduce errors, for example I used door open instead open the door 2.- Don t overload the Batteries, for example Arduino UNO only can give us 500 ma of current. 3.- Avoid doing complex program code because the microcontroller only has 8 bits and 20 MHz clock, otherwise the program would collapse or blocked.

28 7. LINKS The video of this project is on Youtube at the following link: This video shows us: The objectives The hardware used in this project. The software used to program the Arduino UNO. The software used to develop the application of the Smartphone, in this case I use App Inventor 2. Tests performed with switches and voice-activated system. The Tutorial project is located at the following link: Arduino UNO Source code: usp=sharing App Inventor 2 Source code: usp=sharing Image of App Inventor 2 Source code: usp=sharing

Project Description. The design details and parameters: Are as follows:

Project Description. The design details and parameters: Are as follows: Project Description Problem: I have a gas forced hot air furnace with an Aprilair Humidifier. I live in the Mid-Atlantic states. My winter Humidity is controlled by Honeywell Humidistats. They are grossly

More information

Home automation & security system solution base on IOT

Home automation & security system solution base on IOT Home automation & security system solution base on IOT Mohamed Salah Siddig Owner & GM Smart home December 2017 Agenda History of home automation. Gerontology 1991 to 1998. Revelation. Home automation

More information

«Smart Home Technology» by Quadrobit: security energy comfort

«Smart Home Technology» by Quadrobit: security energy comfort «Smart Home Technology» by Quadrobit: security energy comfort "Smart home" is an ecosystem of your home of your safety and comfort "Smart home" is no longer a luxury, it is a necessary tool for the safety

More information

GX-Cubic1 Smart Care Medical Alarm Solutionon. Caring for Your Health and Personal Safety

GX-Cubic1 Smart Care Medical Alarm Solutionon. Caring for Your Health and Personal Safety GX-Cubic1 Smart Care Medical Alarm Solutionon Caring for Your Health and Personal Safety An Advanced Smart Telecare Solution with Voice Control Rapid aging population, high healthcare costs, and physician

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

THE NEXT SMART HOME GENERATION

THE NEXT SMART HOME GENERATION THE NEXT SMART HOME GENERATION She just finished installing her smart home system. Simply installed. Simply expanded. Simply secure. Homematic IP is the next generation of the Homematic technology by eq-3,

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

Welcome to smarter living. New Resident User Guide

Welcome to smarter living. New Resident User Guide Welcome to smarter living. New Resident User Guide 1 Home, just a whole lot smarter. Whether you re all moved in, or elbows deep in cardboard boxes, you re in luck because this is a Vivint smart home.

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

GX-Cubic1 Smart Care Medical Alarm Solutionon. Caring for Your Health and Personal Safety

GX-Cubic1 Smart Care Medical Alarm Solutionon. Caring for Your Health and Personal Safety GX-Cubic1 Smart Care Medical Alarm Solutionon Caring for Your Health and Personal Safety An Advanced Smart Telecare Solution with Voice Control Rapid aging population, high healthcare costs, and physician

More information

Smart Hub. Connecting people, connected care. What is it? Who is it for? How does it work?

Smart Hub. Connecting people, connected care. What is it? Who is it for? How does it work? Smart Hub Connecting people, connected care What is it? The Lifeline Smart Hub is a complete Connected Care monitoring and alarm system for the home. It uses future proof, smart technology to connect service

More information

Network based smoke alarm - using Arduino and iphone

Network based smoke alarm - using Arduino and iphone Network based smoke alarm - using Arduino and iphone 1 of 12 Introduction How cool would it not be to check the status of your smoke alarm through an mobile app over Internet?! I would say very cool and

More information

Secure Your Way of Life. Now Compa ble With. Climax Home Portal Platform. Enable a Connected Future

Secure Your Way of Life. Now Compa ble With. Climax Home Portal Platform. Enable a Connected Future Secure Your Way of Life Now Compa ble With Climax Home Portal Platform Enable a Connected Future Climax Home Portal Platform An IP/GPRS-Based Solution to Deliver Smart Home Security & Mobile Control Services

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

SMART. FLEXIBLE. RELIABLE.

SMART. FLEXIBLE. RELIABLE. SMART. FLEXIBLE. RELIABLE. Life Safety Communications for Education, Healthcare, Correctional, and Industrial/Commercial Applications. WWW.CAREHAWK.COM THE CH1000(LT) PLATFORM The CH1000(LT), a life safety

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

System Security And Monitoring On Smart Home Using Android

System Security And Monitoring On Smart Home Using Android Journal of Physics: Conference Series PAPER OPEN ACCESS System Security And Monitoring On Smart Home Using Android To cite this article: A S Romadhon 2018 J. Phys.: Conf. Ser. 953 012128 View the article

More information

SMS GSM Alarm Messenger

SMS GSM Alarm Messenger SMS GSM Alarm Messenger Data Logging Alarm Input Relay Output Voice Temperature Humidity Analog Input Capture and Send Data via SMS Report triggered alarm via SMS Output triggered via SMS Auto pick up

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

Secure Your Way of Life. Home Management Gateway Series. Transforming Your Life

Secure Your Way of Life. Home Management Gateway Series. Transforming Your Life Secure Your Way of Life Home Management Gateway Series Transforming Your Life HMGW Home Management Gateway Series Think Smart. Live Smart. The HMGW is an IP-based alarm system with RF/ZigBee/Z-Wave and

More information

GSM RFID VOICE Alarm System

GSM RFID VOICE Alarm System GSM RFID VOICE Alarm System User s Manual For a better understanding of this product, please read this user manual thoroughly before using it. CONTENTS [Function Instruction] [Control Panel] Control Panel

More information

V1.0. Smart Home Alarm System. User Manual. APP download via QR Code scanning. Please read the manual carefully before using.

V1.0. Smart Home Alarm System. User Manual. APP download via QR Code scanning. Please read the manual carefully before using. V1.0 Smart Home Alarm System User Manual APP download via QR Code scanning Please read the manual carefully before using. Content FUNCTION PROFILE 2 THE SCHEMATIC GRAPH OF HOST 3 PROCESS OF BOOTING 6 OPERATION

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

DECLARATION. We also declare that all the authors made equal contribution for the completion of this paper. PAGE 1

DECLARATION. We also declare that all the authors made equal contribution for the completion of this paper. PAGE 1 DECLARATION We hereby declare that this thesis report is based on the findings from experiments conducted by ourselves. Results and experiments of other researchers are mentioned in the reference. To our

More information

HOME AUTOMATION BASED PROJECTS

HOME AUTOMATION BASED PROJECTS ************************************************************************ INNOVATIVE & APPLICATION ORIENTED PROJECTS ON SVSEMBEDDED SYSTEMS (8051/AVR/ARM7/MSP430/RENESAS/ARM cortex M3) ************************************************************************

More information

Dishwasher Load-Unload Indicator. Jitendra Tailor

Dishwasher Load-Unload Indicator. Jitendra Tailor Dishwasher Load-Unload Indicator Jitendra Tailor Circuit and Software Operation The key to this gadget involves timing the activity of the dishwasher users. I preset the time to empty the dishwasher at

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

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 IOT BASED SMART SECURITY AND HOME AUTOMATION Pradeep P.Laturkar 1, Parikshit Solunke 2, Parth Medhi 3, Shaunak Oke 4, Shradha Somani 5 1 Assistant Professor, Department of Computer Engineering 2,3,4,5

More information

IDoorBell Fon DP68 Quick Installation Guide

IDoorBell Fon DP68 Quick Installation Guide IDoorBell Fon DP68 Quick Installation Guide 1. Interface 1. Front Panel 2. Back Panel 2. Doorbell Installation Options and Rain Cover Mounting Note: For the best camera angle, position the camera around

More information

1. Introduction. 2. Product overview

1. Introduction. 2. Product overview 1. Introduction The AG400011 GSM Alarm panel is a control panel that is compatible with other H-net security devices from Everspring, such as wireless sensors, remote keyfobs, tags, and keypad. With this

More information

IQ PANEL USER GUIDE SMARTHOME.

IQ PANEL USER GUIDE SMARTHOME. IQ PANEL USER GUIDE SECURITY & SMARTHOME www.schmidtsecurity.com USING YOUR SYSTEM: BASICS Navigation Move from page to page and access information on each page using finger touches, swipes, and scrolling.

More information

Practical, Affordable Smart Home Technologies for People with Mobility Impairments

Practical, Affordable Smart Home Technologies for People with Mobility Impairments Practical, Affordable Smart Home Technologies for People with Mobility Impairments Tony Gentry, PhD OTR/L Department of Occupational Therapy Virginia Commonwealth University Richmond, VA What is a Smart

More information

Smart Intrusion Detection

Smart Intrusion Detection 362 Smart Intrusion Detection Shubham Chopade 1, Atharva Kulkarni 2, Yash Chavan 3 1,2,3 Student, Department of Electronics and Telecommunication, PCCOE, Pune, India Abstract: With the exponential increase

More information

Supervised Security System Owner's Guide

Supervised Security System Owner's Guide Owner's Guide PSC06 READ THIS FIRST This equipment generates and uses radio frequency energy, and if not installed and used properly, that is, in strict accordance with the manufacturers instructions,

More information

Elderly Care Alarm System

Elderly Care Alarm System Introduction 24/7 Peace of mind for your family The GSM Elderly Care Alarm System is a new released smart solution for take care of senior, aged, elder or disabled people on their daily life. Big LED display

More information

MOBILE CALL GSM Alarm System User s Manual

MOBILE CALL GSM Alarm System User s Manual MOBILE CALL GSM Alarm System User s Manual Profile For a better understanding of this product, please read this user manual thoroughly before using it. Contents Function Introduction (3) Alarm Host Diagram

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

AG HOME ALARM Quick Start Guide

AG HOME ALARM Quick Start Guide AG400011 HOME ALARM Quick Start Guide Step 1 Power on and SIM Card Installation 1. Remove battery cover of the alarm panel. 2. Insert a SIM card into the slot and connect the Li-ion cell 2000mAh 3.7V and

More information

Honeywell Control Panels FOR RESIDENTIAL AND COMMERCIAL INSTALLATIONS. Feature Charts

Honeywell Control Panels FOR RESIDENTIAL AND COMMERCIAL INSTALLATIONS. Feature Charts Honeywell Control Panels FOR RESIDENTIAL AND COMMERCIAL INSTALLATIONS Feature Charts Control Panels FEATURE CHART LYNX Plus (L3000) (Supported Feature) (Not Supported) N/A (Not Applicable) LYNX Touch (L5210)

More information

Preface. Thank you for purchasing our GSM Security Alarm System ( The System )! The System will keep your home and property safe around the clock.

Preface. Thank you for purchasing our GSM Security Alarm System ( The System )! The System will keep your home and property safe around the clock. Preface Thank you for purchasing our GSM Security Alarm System ( The System )! The System will keep your home and property safe around the clock. The GSM Security Alarm ( The Alarm ) adopts the most advanced

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

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

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 2 Our integrated security solutions

More information

Profile. For a better understanding of this product, please read this user manual thoroughly before using it.

Profile. For a better understanding of this product, please read this user manual thoroughly before using it. Intelligent GSM Auto-Dial Alarm System User s Manual Profile For a better understanding of this product, please read this user manual thoroughly before using it. Contents Function Introduction (3) Alarm

More information

PROTECTION CABINETS SUPERVISION CABINETS FOR AUTOMATIC EXTERNAL DEFIBRILLATORS (AEDs)

PROTECTION CABINETS SUPERVISION CABINETS FOR AUTOMATIC EXTERNAL DEFIBRILLATORS (AEDs) PROTECTION CABINETS SUPERVISION CABINETS FOR AUTOMATIC EXTERNAL DEFIBRILLATORS (AEDs) FEATURES OF AIVIA PROTECTION MODELS H : 423 mm The Aivia range has been designed and manufactured by the French company

More information

ADRIA intelligent room system

ADRIA intelligent room system ADRIA intelligent room system New functions overview 2017 Contents: Residential part (rooms): 1. Access control and presence monitoring 2. Temperature control 3. Energy management 4. Hospitality 5. Security

More information

USER S MANUAL. Profile. MOBILE CALL GSM Alarm System

USER S MANUAL. Profile. MOBILE CALL GSM Alarm System MOBILE CALL GSM Alarm System USER S MANUAL System disarmed 00/00/00 00:00 ARM STAY CALL 1 2 3 4 5 6 7 8 9 Power Set Signal Alarm SOS ESC 0 ENTER Profile For a better understanding of this product, please

More information

Humidity and Temperature Prototype for Education with Internet of Things

Humidity and Temperature Prototype for Education with Internet of Things Volume 119 No. 16 2018, 2487-2491 ISSN: 1314-3395 (on-line version) url: http://www.acadpubl.eu/hub/ Humidity and Temperature Prototype for Education with Internet of Things http://www.acadpubl.eu/hub/

More information

Secure Your Way of Life. Now Compa ble With. Vesta Smart Security Solution ML Series

Secure Your Way of Life. Now Compa ble With. Vesta Smart Security Solution ML Series Secure Your Way of Life Now Compa ble With Vesta Smart Security Solution ML Series A new generation of ML control panel series is an integrated and comprehensive system that manages safety, security and

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

Intelligent Wireless GSM Alarm System

Intelligent Wireless GSM Alarm System Intelligent Wireless GSM Alarm System 00M2K User s Manual Profile For a better understanding of this product, please read this user manual thoroughly before using it. Contents [Function Instruction] [Alarm

More information

Now Compa ble With. VL Touchscreen Alarm. Crafted Touchscreen Security System that Revolutionizes Your World. illi tl C

Now Compa ble With. VL Touchscreen Alarm. Crafted Touchscreen Security System that Revolutionizes Your World. illi tl C Now Compa ble With VL Touchscreen Alarm V AB Brilliantly illi tl C Crafted Touchscreen Security System that Revolutionizes Your World Crafted with Incredible Intelligence Introducing the new VL touchscreen

More information

Secure Your Way of Life. ESGW EasySmart Gateway Series. A Smart Way of Living Green and Saving Smart

Secure Your Way of Life. ESGW EasySmart Gateway Series. A Smart Way of Living Green and Saving Smart Secure Your Way of Life ESGW EasySmart Gateway Series A Smart Way of Living Green and Saving Smart ESGW EasySmart Gateway Series A Life-Transforming ZigBee/Z-Wave Innovation The ESGW features optional

More information

CONTENTS. (User s Manual)

CONTENTS. (User s Manual) CONTENTS (User s Manual) 1. Foreword & Main Features & Brief introduction of the Product 2. Understanding of Alarm Host 3. Specifications 4. Type and definition of Defense Line 5. Programming the alarm

More information

YOUR SCHOOL STAFF NEEDS PROTECTION

YOUR SCHOOL STAFF NEEDS PROTECTION YOUR SCHOOL STAFF NEEDS PROTECTION Threats and assaults on school staff and students are on the rise. They deserve protection. But what is an effective means to notify security personnel and school officials

More information

GSM Alarm System. User s Manual. Profile. MOBILE CALL GSM Alarm System

GSM Alarm System. User s Manual. Profile. MOBILE CALL GSM Alarm System MOBILE CALL GSM Alarm System GSM Alarm System System disarmed 11/26/2013 User s Manual Profile For a better understanding of this product, please read this user manual thoroughly before using it. CONTENTS

More information

Wolf Guard Touch Keypad GSM Wireless alarm system User s Manual

Wolf Guard Touch Keypad GSM Wireless alarm system User s Manual Wolf Guard Touch Keypad GSM Wireless alarm system User s Manual Page 1 Warning Do not remove the front or back cover of the unit and keep it intact. There are no parts inside this unit that can be repaired

More information

Alarm System SECURE AS 302

Alarm System SECURE AS 302 Alarm System SECURE AS 302 Operating Manual SECURE Light app now available! Table of Contents Before You Start.................................. 4 User Information....................................4

More information

Smart Home Design and Application

Smart Home Design and Application WWJMRD 2017; 3(6): 53-58 www.wwjmrd.com Impact Factor MJIF: 4.25 e-issn: 2454-6615 Gülay BAŞOL Department of Electrical and Electronics Engineering, Faculty of Technology, Dumlupinar University, Rüştü

More information

SYSTEM ENHANCEMENT MODULE

SYSTEM ENHANCEMENT MODULE SYSTEM ENHANCEMENT MODULE DSC PowerSeries INSTALLATION GUIDE INSTALL WIZARD AVAILABLE AT ALARM.COM/SEMPOWERSERIES OVERVIEW The System Enhancement Module (SEM) can be used with DSC PowerSeries PC1616, PC1832,

More information

Smart Anytime, Safe Anywhere. Home Control Gateway Series. Life-Transforming ZigBee/Z-Wave Innovations

Smart Anytime, Safe Anywhere. Home Control Gateway Series. Life-Transforming ZigBee/Z-Wave Innovations Smart Anytime, Safe Anywhere Home Control Gateway Series Life-Transforming ZigBee/Z-Wave Innovations Table of Contents Introduction to the HCGW Series 1 Features 2 The HCGW Comparison Chart 6 Ordering

More information

Automated Medication Kit

Automated Medication Kit Volume-5, Issue-2, April-2015 International Journal of Engineering and Management Research Page Number: 491-496 Automated Medication Kit V. L. Charishma 1, K. Harika 2, A. Kavya 3, Mr. T. P. Kausalya Nandan

More information

Ontech GSM 9040/50. Reference Manual English -1 -

Ontech GSM 9040/50. Reference Manual English -1 - Ontech GSM 9040/50 Reference Manual English -1 - Content Welcome... 5 This manual... 5 Text styles... 5 Support... 5 Disclaimer... 5 Overview... 6 Accessories... 6 External temperature sensor 9901... 7

More information

rvm4c Installation Guide Remote Video Module

rvm4c Installation Guide Remote Video Module rvm4c EN Installation Guide Remote Video Module rvm4c Installation Guide Installation Diagrams EN 2 Installation Diagrams for the Transmitting Unit rvm4c Installation Guide Basic Hardware Installation

More information

Secure Your Way of Life. Now Compa ble With. Vesta Smart Security Solution - MZ Series

Secure Your Way of Life. Now Compa ble With. Vesta Smart Security Solution - MZ Series Secure Your Way of Life Now Compa ble With Vesta Smart Security Solution - MZ Series A new generation of MZ control panel series is an integrated and comprehensive system that manages safety, security

More information

Security designed for your lifestyle

Security designed for your lifestyle Security designed for your lifestyle The Paradox Insight : The Big Picture A single CAT5 or higher cable can be used to wire a single HD77 camera. Camera Detector Module HD 720p camera Quad PIR with auto

More information

Jon Longtin Department of Mechanical Engineering SUNY Stony Brook

Jon Longtin Department of Mechanical Engineering SUNY Stony Brook Jon Longtin Department of Mechanical Engineering SUNY Stony Brook Jon Longtin Department of Mechanical Engineering SUNY Stony Brook jlongtin@ms.cc.sunysb.edu 631 632-1110 Overview The Neglected Gas Meter

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

PRODUCT CATALOGUE. Cape Town 18 Darter Road Blue Water Estate Kommetjie. Gauteng 245 Louis Botha Avenue Orchards Johannesburg

PRODUCT CATALOGUE.   Cape Town 18 Darter Road Blue Water Estate Kommetjie. Gauteng 245 Louis Botha Avenue Orchards Johannesburg PRODUCT CATALOGUE Cape Town 18 Darter Road Blue Water Estate Kommetjie Luke Fowles - 076 161 8124 luke@providenttech.co.za Frank Fowles - 082 445 1541 frank@providenttech.co.za www.providenttech.co.za

More information

With Magictrl, you can control MatiGard anytime & anywhere via your smartphone, even without data network.

With Magictrl, you can control MatiGard anytime & anywhere via your smartphone, even without data network. MatiGard User Guide 02 Menu Feature-------------------------------------------------------------- 05 Overviews---------------------------------------------------------- 07 Read Before Using-----------------------------------------------

More information

GLOBAL. InstallatIon & operation manual

GLOBAL. InstallatIon & operation manual InstallatIon & operation manual INDEX 1. INTRODUCTION... 5 2. FEATURES AND FUNCTIONS 2.1 Reporting Options... 2.2 Interfaces... 2.3 Programming... 2.4 Indicators and Controls...... 6 6 6 6 6 3. INSTALLATION...

More information

Security System Proposal

Security System Proposal Security System Proposal Thank you for the opportunity to present this proposal for a complete security and installation for your home. Our family has been selling security systems, home automation and

More information

ERS-3600B. PERS-3600B Personal Emergency Reporting System

ERS-3600B. PERS-3600B Personal Emergency Reporting System PERS-3600B Personal Emergency Reporting System ERS-3600B A Complete Emergency System For Comprehensive Care The Linear PERS-3600B includes a built-in speakerphone and reminder message capability, providing

More information

MICANS INFOTECH

MICANS INFOTECH EEE/ECE/EIE/ICE/ROBOTICS/BIOMEDICAL 2017-2018 PROJECT TITLE 1. IR sensor based walking stick for the blind people 35 Microcontroller Based Prepaid card for petrol bunk 2. Industrial fire warning system

More information

Smart Homes in. Rajya Sabha Co-operative Housing Society

Smart Homes in. Rajya Sabha Co-operative Housing Society Smart Homes in Rajya Sabha Co-operative Housing Society Construction Partners Technical Partners for Smart Society & Homes Introduction Categories Online Enhanced Security Residents Communication Alerts

More information

Secure Your Way of Life. Home Control Gateway Series. Life-Transforming ZigBee/Z-Wave Innovations

Secure Your Way of Life. Home Control Gateway Series. Life-Transforming ZigBee/Z-Wave Innovations Secure Your Way of Life Home Control Gateway Series Life-Transforming ZigBee/Z-Wave Innovations Table of Contents Introduction to the HCGW Series 1 Features 2 The HCGW Comparison Chart 6 Ordering Information

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

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

Offer your customers a high end solution for a low end price. Complete alarmsystem with integrated 24/7 camera surveillance Immediate Push Alarm on mobile phone including photo and video-recording Camera

More information

Integration with Mobotix Q24

Integration with Mobotix Q24 Integration with Mobotix Q24 Camera This is the third tutorial from the series of tutorials describing integration of the DOMIQ system with Mobotix devices. In the previous tutorials we described the integration

More information

EXPANDABLE SMART HOME SECURITY KIT

EXPANDABLE SMART HOME SECURITY KIT EXPANDABLE SMART HOME SECURITY KIT SKU Code: SHA5108 SMART HOME AUTOMATION WITH SECURITY ALARM & OUTDOOR SIREN (2 way RF 868Mhz communication). ALL MANAGED VIA 1 APP ON YOUR SMARTPHONE Indoor IP Camera

More information

PRODUCT LYNC IoT 37. PRODUCT: LYNC IoT

PRODUCT LYNC IoT 37. PRODUCT: LYNC IoT 36 PRODUCT LYNC IoT PRODUCT LYNC IoT 37 PRODUCT: LYNC IoT 38 PRODUCT LYNC IoT With the Linno LYNC IoT system light is no longer a static necessity for the simple illumination of interior spaces. Using

More information

YALE SECURE CONNECT. Delivering a premium digital locking solution with flexible control and peace of mind.

YALE SECURE CONNECT. Delivering a premium digital locking solution with flexible control and peace of mind. YALE SECURE CONNECT Delivering a premium digital locking solution with flexible control and peace of mind. i An ASSA ABLOY Group brand Yale Secure Connect delivers a premium digital locking solution with

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

ARCHITECTURAL ROBOTICS - ECE 868 / ARCH 868 PROJECT #1 - CONSTRUCTED LANDSCAPE TREE

ARCHITECTURAL ROBOTICS - ECE 868 / ARCH 868 PROJECT #1 - CONSTRUCTED LANDSCAPE TREE ARCHITECTURAL ROBOTICS - ECE 868 / ARCH 868 PROJECT #1 - CONSTRUCTED LANDSCAPE TREE George Schafer and Pallavi Srikanth YouTube URL: http://www.youtube.com/user/pallavis16#p/a/u/0/xzbqm7mubp4 Abstract:

More information

NEXT-GENERATION MULTIFUNCTIONAL DEVICE

NEXT-GENERATION MULTIFUNCTIONAL DEVICE FIBARO NEXT-GENERATION MULTIFUNCTIONAL DEVICE FIBARO Intercom is a mix of superior design and state of the art technology. VIEW FEATURES Very wide angle lans BlueTooth proximity Excellent image quality

More information

For Android devices MYQ-G0301 MYQ-G0301C MYQ-G0301D MYQ-G0301LA

For Android devices MYQ-G0301 MYQ-G0301C MYQ-G0301D MYQ-G0301LA Smart Smart Garage Garage Hub Hub Manual Manual For Android devices MYQ-G0301 MYQ-G0301C MYQ-G0301D MYQ-G0301LA by Before You Start To reduce the risk of SEVERE INJURY to persons: DO NOT enable the MyQ

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

Innovative EEE mini-projects list

Innovative EEE mini-projects list 1 Innovative EEE mini-projects list SEM-133. Checking and auto control of water level using wireless sensor. SEM-140. Wireless 3-phase motor starter using RF technology. SEM-185. Designing of Haptic Keypad

More information

Solutions for Smarter Home Security

Solutions for Smarter Home Security (817) 602-5792 texasappliancehomeautomation.com License # - B06249301 Solutions for Smarter Home Security An Alarm.com powered system provides solutions to monitor and protect your home and everyone in

More information

Failure to comply with the following instructions may result in death or serious injury to

Failure to comply with the following instructions may result in death or serious injury to 1. Safety Precautions [Warning] Failure to comply with the following instructions may result in death or serious injury to the user or failure of the product. - Do not disassemble, repair, or modify the

More information

Secure Your Way of Life. Home Control Gateway Series. Life-Transforming ZigBee/Z-Wave Innovations

Secure Your Way of Life. Home Control Gateway Series. Life-Transforming ZigBee/Z-Wave Innovations Secure Your Way of Life Home Control Gateway Series Life-Transforming ZigBee/Z-Wave Innovations Table of Contents Introduction to the HCGW Series 1 Features 2 The HCGW Comparison Chart 6 Ordering Information

More information

Welcome, and thank you for joining us today!

Welcome, and thank you for joining us today! Welcome, and thank you for joining us today! EnOcean Radio Technology Interoperable Wireless Standard Interoperable technology and products. HVAC&R, monitoring and lighting control systems are readily

More information

THE EVOLUTION OF CONTROL APP & CLOUD PORTAL

THE EVOLUTION OF CONTROL APP & CLOUD PORTAL THE EVOLUTION OF CONTROL APP & CLOUD PORTAL APP MAIN APP FUNCTIONS EMERGENCY Facilitates the work of installers and company maintenance operators. Allows control of the functions of all lights of the system.

More information

ViewMatrix. Software for Online Monitoring & Control of Matrix2000 Conventional Fire Alarm Panels. Version: 2.0 Revision: 0.1

ViewMatrix. Software for Online Monitoring & Control of Matrix2000 Conventional Fire Alarm Panels. Version: 2.0 Revision: 0.1 ViewMatrix Software for Online Monitoring & Control of Matrix2000 Conventional Fire Alarm Panels Version: 2.0 Revision: 0.1 CONTENTS 1. Introduction...3 2. Keyboard...5 2.1 POWER indication - Normal Operation...5

More information

About IntraLogic. In Business since 2004 Over 55 Full time employees

About IntraLogic. In Business since 2004 Over 55 Full time employees Security Services In Business since 2004 Over 55 Full time employees About IntraLogic National & State Contracts including OGS / GSA Our sales & system design team all have security backgrounds Clients

More information

Home intelligence PRODUCT CATALOG FIBARO SYSTEM

Home intelligence PRODUCT CATALOG FIBARO SYSTEM Home intelligence PRODUCT CATALOG FIBARO SYSTEM About FIBARO The FIBARO System is a complete home control and automation solution that delivers peace-of-mind and comfort through a network of cooperating

More information

G SERIES: Security INTEGRATION as you want it. Greater expansion, communication, video integration, system resilience, and automation.

G SERIES: Security INTEGRATION as you want it. Greater expansion, communication, video integration, system resilience, and automation. G SERIES: Security INTEGRATION as you want it Greater expansion, communication, video integration, system resilience, and automation. G Series Integrated Security Solution Fire Intrusion Access Greater

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

Sensaphone 400 Telemetry System Integration

Sensaphone 400 Telemetry System Integration Application Note 003 Version 001 07 Oct 2014 Sensaphone 400 Telemetry System Integration The Sensaphone Model 400 is an alarm dialer device that is capable of calling out to one or more telephone numbers

More information