THE ACCURATE FALLING DETECTION SYSTEM FOR THE ELDERLY (AFDE)

Size: px
Start display at page:

Download "THE ACCURATE FALLING DETECTION SYSTEM FOR THE ELDERLY (AFDE)"

Transcription

1 THE ACCURATE FALLING DETECTION SYSTEM FOR THE ELDERLY (AFDE) Jie Ni Dorette Ong 1, Huijie Zhang 1, Vwen Yen Alwyn Lee 2, Clifton Phua 2, Kelvin Sim 2, Yan Liu 3 and Xian Zhang 3 1 Raffles Girls School (Secondary), 20 Anderson Road, Singapore Institute of Infocomm Research, A*STAR, 1 Fusionopolis Way, Singapore School of Computing, National University of Singapore, 21 Lower Kent Ridge Road, Singapore ABSTRACT Statistics have shown that falls are the leading cause of accidental deaths among people over the age of 75 and 55% of all falls take place in homes with most falls occurring in the bathroom. In this research, the aim of this project is to come up with a system that is able to detect falls in the washrooms, so that immediate medical aid can be provided so as to alleviate the aftereffects of the fall. Microsoft Visio was used to map the logic of the system which was then used in the creation of the rules for the system. Drools Rules is used to create a set of rules that gets input from the sensors detecting the motions of the patients, so as to infer the activities that are ongoing in order to check for errors. With input from the sensors, the set of rules should be able to determine the activity happening and possible errors that the input could imply. Simulations of real-li (Learn Not To Fall, 2009) scenarios were carried out twice. Errors and limitations of the system were noted during the simulation to further debug and improve the rules for a more robust and efficient system. 1. INTRODUCTION Statistics have shown that falls are the leading cause of accidental deaths among people over the age of 75 and 55% of all falls take place in homes with most falls occurring in the bathroom. Over a third of the elderly are admitted to the hospital due to falls that take place in bathrooms. Of all the elderly that are hospitalized due to falls, 50 percent of them fail to survive a year. Many elderly increase their degree of injury due to fainting in the Correspondence to : Jie Ni Dorette Ong (miss_genie@hotmail.com) 83

2 bathroom and not being able to get medical help in time. During the fall, patients may suffer from shock or unconsciousness and it is important for immediate medical aid to reduce the aftereffect. The main purpose of this research is to come up with a system that is able to detect falls so as to immediately alert the nurses or caregivers. This is done by creating a list of Drools Rules. These rules are debugged, improved and enhanced via simulations of real-life scenarios. Drools Rules is used to create a set of rules that gets input from the sensors detecting the motions of the patients, so as to infer the activities that are ongoing in order to check for errors. In this case, there is the error to warn the caregivers when the patient has fallen down. This system aims to help the elderly who live independently improve their quality of life and relieve the caregivers. 2. MATERIALS AND METHODS The tools used are Java and Drools Rules. Java language is used when programming for class files. Drools Expert is a type of software that is used in creating Jboss rules. These two are simulated through Eclipse, an integrated development environment for coding. The rules are then debugged via simulation with the sensors. Figure 1. Flowchart depicting the logic of the system The sensors used in the simulation are the Passive Infrared Sensor (PIR) and the Ultrasound Sensor (US). A flowchart was mapped with Microsoft Visio to show the series of how the logic of the falling detection system. 84

3 2.1. Reasoning Engine APEC Youth Scientist Journal Vol. 4 / No.1 The reasoning engine consists of a list of Drools rules written through Drools Expert software as well as different class files, for example Contextual Reasoning, Person, Sensor, etc. Each rule consists of two components, the requirements for the rule to fire and the consequences after the rule fires. rule " Suspected Fall " duration when $s1 : Sensor ( id == "pirwashroom", pirstate == Sensor.pir_state.FIRING) $s2 : Sensor ( id == "uswashroom", usstate!= Sensor.us_state.NORMAL) $p : Person(occupancy == Person.person_occupancy.OCCUPIED) then $p.setactivity (Person.person_activity.FALLING); Figure 2. An example of a rule The first component of the rule consists of conditions that have to be fulfilled before the system recognises the second component. For example, in this rule, Suspected Falling, the Passive Infrared Sensor, pirwashroom must be in the firing state and the Ultrasound Sensor uswashroom must not be in normal state, but in caution or danger state for the rule to fire. This condition must hold for 10mins before the rule fires. When the rule fires, the person occupying the washroom will then have the activity as falling. There are two sensors used in this system, mainly the Ultrasound Sensor (US) and the Passive Infrared Sensor (PIR). The Passive Infrared Sensor detects activities of infrared sources and through detection of movement, determines whether there is any presence within the room or area. Its two states are Silent and Firing. The Ultrasound Sensor detects the height of the nearest object or person nearest to it. Its three states are Normal, Danger and Caution. The Ultrasound Sensor works by detecting its distance from the object closest to it. (Tallest object) When the distance increases, that means that the person in the room is close to the ground. This may be due to the person bending to pick something up, or bending to wash his/her face, or falling. The Ultrasound Sensor takes a reading at a rate of 600 times per minute, or 10 times per second. Caution mode is activated when the person lowers at a slow speed. (Increasing distance from sensor; the difference between readings are not that great.) This mode is maintained when the person is about 110cm to 60 cm off the ground. Danger mode is activated when the person lowers at a great speed. (Increasing distance form sensor; the difference between readings are great.) 85

4 This mode is maintained when the person is less than 60 cm off the ground Environmental Set-up There are two rounds of simulation, one that ensure that the forms of the rules are correct and another to test out the actual scenario. The simulations to test out the actual scenario were done in a handicapped toilet, with the layout as shown below. There were two parts to this simulation. Firstly, different scenarios were tested systematically, with four possible events, mainly, bending to use the tap, sitting on the toilet seat, falling and nurse intervention. Then, simulations based on free scenarios were tested to ensure that the system would work regardless of the actions in the washroom. Video recordings and logs were recorded of the simulation for later verification. The logs recorded down the readings of the sensors and were then compared to the video recordings and the GUI to check whether the rules were correctly implemented. This is done by cross-referencing the video recordings of the simulations, video recordings of the GUI and the log of the readings to check if the actions match the conclusions on the GUI. The log is used to check with the simultaneous actions of the person in the video. The section shown below describes the action of the person going into the washroom :43: pirwashroom 485 SILENT uswashroom 145 CAUTION :43: pirwashroom 485 SILENT uswashroom 145 CAUTION :43:01.28 pirwashroom 915 FIRING uswashroom 145 CAUTION :43: pirwashroom 915 FIRING uswashroom 135 NORMAL :43: pirwashroom 915 FIRING uswashroom 126 NORMAL :43: pirwashroom 915 FIRING uswashroom 119 NORMAL Figure 3. A section of the log showing the sensor states The Passive Infrared Sensor is located in the bottom right-hand corner of the washroom to ensure maximum coverage of the area and reduce blind spots. Should the setup of the bathroom be different, the PIR sensor will be placed in an empty corner facing either the sink or the toilet bowl. The Ultrasound Sensor is located on the ceiling in the middle of the washroom to provide maximum coverage. 86

5 Figure 4. Diagram of Washroom used in simulation 2.3. Person The person in this scenario has three possible activities, Check, Falling and Bending. Falling refers to the suspected falling rule where there is a sudden drop in height when the person has moved from a higher height to a lower height by possibly bending or really falling. In the system, the person is classified to have fallen but should the person get up after the fall, it is classified as bending. In this case, Bending refers to the two cases, one where the person does not fall but is bending to use the sink or sitting on the toilet seat and the other is the false alarm when the person has supposedly fallen down but managed to get up showing that it was not really a fall. Bending is classified broadly as the cases where there is a sudden increase in height when the person moves from a lower height to a higher height. Check is an activity to check if the person is suspected to have fallen or has left the room. When the person leaves the washroom, there is a sudden drop in height and this may be taken as a fall. To prevent the system from wrongly determining an exit from the washroom as a fall, there needs to be a fall check to see if there is anyone present in the room. 87

6 3. RESULTS Entering Washing Sitting on Toilet Fallen Down Exits Washroom Washroom Hands st Test Actions (Chronological order) Fallen Correct? Other remarks Alert?.. No N/A... Yes Patient bent too low... No N/A... Yes Patient was able.... Yes Help rendered to Patient.... Yes Patient was able..... Yes Patient was able..... Yes Patient was able 2 nd Test Actions (Chronological order) Fallen Correct? Other remarks Alert?.. No N/A... No N/A... No N/A... Yes Patient was able.... Yes Patient was able.... Yes Patient was able..... No System showed no one in room..... Yes Patient was able 88

7 3 rd Test Actions (Random order) Fallen Correct? Other remarks Alert?.. No N/A... No N/A... No N/A... Yes Patient was able.... Yes Patient was able.... Yes Patient was able..... Yes Patient was able..... Yes Patient was able Table 5. A table of the actions and alerts during simulation Analysis of Data A total of 30 trials were done, the first two in chronological order and the third one in a random order. Overall, the 30 trials had an accuracy of 28/30, which is an accuracy rate of 93.3% approximately. In terms of fall detection, 14 out of 15 experiments had the fall detected and the 15 experiments had an accuracy rate of 93.3%. 4. DISCUSSION During simulation, there were two main testing avenues, mainly the false alarms and the falling error. False alarms can arise from bending, sitting on the toilet seat and leaving the washroom. During troubleshooting, some errors were found and debugged. Duration played a key role in preventing false alarms. For example, to prevent the false alarm where the system claimed that the person had fallen when the person had actually exited the washroom, there was a time buffer created. This was done by checking if the Passive Infrared Sensor was still firing, if it was still firing for more than 10 minutes, then the person would have fallen down, if it was silent for more than 10 minutes, then it is classified as a false alarm. Without the buffer, the system would be too sensitive and inaccurate. 89

8 Similarly, during the 1 st test, there was an error for the action when the person entered the washroom and washed his hands before leaving the washroom. This was due to a duration issue as the person in the scenario has washed his/her hands for a longer duration and had triggered the alert since the ultrasound had detected a change in state from Normal to Danger for a period of time. To solve this problem, the buffer time allowed for the system to trigger the alert was increased to 10 minutes so that should the person want to wash his/her hands, he/she would have probably finish washing before 10 minutes and not trigger the alert. Another error in the 2 nd test, for the action where the person entered the washroom, sat on the toilet seat and fell down before exiting, was due to a sensor error where the Passive Infrared Sensor was unable to detect the presence of the person in the washroom. This resulted in an error where the system showed that no one was in the washroom. 5. LIMITATIONS 5.1. Ultrasound Sensor and the inaccuracy of distances Since the Ultrasound Sensor measures the linear distance between the Sensor and the person, the data would be skewed if the person was in a corner of the room as the distance would be greater. For example, though the height of the object from the ground is the same, the perceived distance of the person from the Ultrasound sensor is greater in the corner, thus skewing the results. This could result in the ultrasound sensor sending out wrong signals to the system, as the state of the sensor could be wrong. 90

9 5.2. The lack of a Bathing area In a real-life situation, there is a bathing corner in the washroom, and therefore the toilet which the experiment was carried out in is not completely applicable to the washroom of the nursing home Sensitivity of the Passive Infrared Sensor The PIR Sensor is unable to detect breathing movements, and thus is only in Firing mode if there is significant movement within the room. Thus, often when if the patient is in the room, the sensor may send out an incorrect signal and affect the accuracy of the rules. For example, if the patient happens to knock his/her head during the fall and becomes unconscious, the PIR Sensor will report as Silent mode and thus the fall alert will not appear. The accuracy of the sensor can be improved if the sensor is changed to the Infrared Heat Detection System. However, this sensor is expensive, with costs varying from ten thousand to twenty thousand $US. This is impractical in real-life washrooms in nursing homes, and thus the PIR Sensor is chosen instead. 6. FURTHER IMPROVEMENTS/ PLANS FOR EXPERIMENTATION Since the layout of the washroom in I2R is different from the layout in the PeaceHaven Home, this could affect the accuracy of the rules. For further experimentation, simulation could be carried out in the actual washroom. Further experimentation could also be done to observe the behavior and reactions to the system of the elderly or those living in the home. The sensitivity of the Passive Infrared Sensor can be improved in the real-life scenario by purchasing another type of the Passive Infrared Sensor. (Infrared Heat Detection System) This way, even slight movements like breathing can be detected and thus even falls which render the patients unconscious are detected. However, since the Infrared Heat Detection System is expensive, one way of adjusting is to reduce the bar for the Firing Mode. This in turn causes the system to have a longer recovery time. Therefore, with further experimentation, a balance between precision and time can be reached. 91

10 7. CONCLUSION During the mentorship, time was spent on creating flowcharts to check the logic in the system and creating the Drools Rules. We learnt how to set up and use the sensors through the mentor s guidance. Simulations were carried out and video recordings of the simulations were taken down for checking of results. Data was also taken from the log collated by the system in order for the checking and confirmation of results. The system may not be perfect but is workable and is an efficient system. Nurse Intervention In the previous experiment, the system functions with two characters (Patients) in the Washroom or Bedroom, namely Person A and Person B. These two people carry out activities such as walking in the bedroom, lying on the bed, sitting on the bed and opening the cupboard. To maintain order and protect the privacy of the patients in the nursing home, an auto-correction activity is set up so reminders will be made when patients make erroneous activities. This system has been improved in this project extension by the addition of a new character into the system, namely the nurse. The nurse is able to appear in the room and intervene with the patients activities should errors occur. 8. MATERIALS AND METHODS The tools used are Java and Drools Rules, and the rules are tested on the XMPP Interface through Spark. After the rules are created, they are systematically simulated with a scenario that covers all possible actions to ensure accuracy of rules. Any inefficiencies or errors within the system are corrected. The system is put in a "Hang" mode when the nurse enters the room, in which case no errors are brought up. During this time, the nurse may carry out some actions and remind the patients on their errors and possibly correct it. When the nurse leaves the room, the system goes out of the "Hang" mode and is able to show existing errors. An original design of the rules did not feature the Hang mode, but instead simply cancelled out all existing errors. However, this couldn t work as the errors appear repetitively and thus the system can only erase the errors one at a time. Thus a more practical solution was implemented to ensure that errors can only appear when the nurse is not in the room. 92

11 Description The purpose of the Hang status is to enable the system to automatically detect and deactivate the errors in the system temporarily during the span of time when the nurse is in the room. Therefore, in the case that the nurse is unable to remove all the errors in the system, the error alerts will still be activated following the nurse s absence. This will ensure that the system, being able by itself, retains its smooth sequence of events and any possible crashes in the system is avoided and human intervention is not required. 9. REFERENCES 1. Magnolia, SBS, JBoss EAP, and RHEL (2011),Drools Expert Jboss Community. Last retrieved 18 July Bath Fixers, Inc. (2008, June 12). Bath Fixer. Retrieved Jan 4, 2012, from Bath Fixer Bathroom Solution to Improve your Quality of Life: 3. Learn Not To Fall. (2009, March 2). Learn Not To Fall. Retrieved Dec 28, 2012, from Falls and Injury Statisics for Seniors and Elderly: Jie Ni Dorette Ong Huijie Zhang 93

Fall Detection System based on Kinect Sensor using Novel Detection and Posture Recognition Algorithm

Fall Detection System based on Kinect Sensor using Novel Detection and Posture Recognition Algorithm Fall Detection System based on Kinect Sensor using Novel Detection and Posture Recognition Algorithm Choon Kiat Lee 1, Vwen Yen Lee 2 1 Hwa Chong Institution, Singapore choonkiat.lee@gmail.com 2 Institute

More information

CONTENTS 4. HOW TO UNSET THE PANEL...7

CONTENTS 4. HOW TO UNSET THE PANEL...7 Pi-8 USER MANUAL CONTENTS 1. THE KEYPAD AND ITS OPERATION...3 1.1 DESCRIPTION OF THE KEYPAD LEDS... 3 1.1.1 READY LED (RED)...3 1.1.2 TAMPER LED (RED)...3 1.1.3 POWER LED (GREEN)...3 1.1.4 CIRCUIT LEDs

More information

GSM ALARM SYSTEM USER MANUAL

GSM ALARM SYSTEM USER MANUAL GSM ALARM SYSTEM USER MANUAL 1. Instruction The alarm system is based on GSM network. With a GSM SIM card, it can be used wherever you want and no need to connect any wire, which is convenient and easy

More information

GSM Home Alarm System User Manual. http://www.usmartbuy.com

GSM Home Alarm System User Manual. http://www.usmartbuy.com GSM Home Alarm System User Manual http://www.usmartbuy.com 1 1. Factory default Normally, all sensors in the big box have been coded (learnt) to the control host Operation Password: 0000 Long-Distance

More information

Insulation Resistance Monitoring System (IRMS) Operator Manual 96A0257 Rev. D

Insulation Resistance Monitoring System (IRMS) Operator Manual 96A0257 Rev. D Airfield Solutions Insulation Resistance Monitoring System (IRMS) Operator Manual 96A0257 Rev. D Table of Contents Table of Contents... i 1. INTRODUCTION... 1-1 1.1 FINDING YOUR WAY AROUND... 1-2 1.2 SUPPORT

More information

Original Research Articles

Original Research Articles Original Research Articles Researchers Mr.Ramchandra K. Gurav, Prof. Mahesh S. Kumbhar Department of Electronics & Telecommunication, Rajarambapu Institute of Technology, Sakharale, M.S., INDIA Email-

More information

COMPACT GUIDE. Camera-Integrated Motion Analysis

COMPACT GUIDE. Camera-Integrated Motion Analysis EN 05/13 COMPACT GUIDE Camera-Integrated Motion Analysis Detect the movement of people and objects Filter according to directions of movement Fast, simple configuration Reliable results, even in the event

More information

Report of Research Results

Report of Research Results Report of Research Results Scaling and Deployment of e-guardian to Eldercare Centers and Single Elderly Homes Primary Researcher: Prof. Tan Kok Kiong, Department of Electrical and Computer Engineering

More information

PowerWave-8. Users Operating and Programming Guide Version 8.64. 8 zone Control panel Communicator

PowerWave-8. Users Operating and Programming Guide Version 8.64. 8 zone Control panel Communicator ELECTRONIC ENGINEERING LTD. PowerWave-8 8 zone Control panel Communicator Users Operating and Programming Guide Version 8.64 P/N 7101261 Rev. C N.A July 2002 2 Contents Introduction...5 Meet the Crow Alarm

More information

The third report from the Patient Safety Observatory. Slips, trips and falls in hospital PSO/3 SUMMARY

The third report from the Patient Safety Observatory. Slips, trips and falls in hospital PSO/3 SUMMARY The third report from the Patient Safety Observatory Slips, trips and falls in hospital PSO/3 Patient falls have both human and financial costs. For individual patients, the consequences can range from

More information

MONITOR ISM / AFx Multi-Tenant Security System User Guide V1.3

MONITOR ISM / AFx Multi-Tenant Security System User Guide V1.3 MONITOR ISM / AFx Multi-Tenant Security System User Guide V.3 Multi-Tenant Security System User Guide Welcome New Users! There are two types of suite security keypads. Follow the instructions in the proceeding

More information

Security GSM Alarm System USER MANUAL

Security GSM Alarm System USER MANUAL Security GSM Alarm System USER MANUAL System installation Brief introduction of system This alarm consists of main engine of alarm and various wireless-connected accessories. When people enter the defense

More information

Carbon Monoxide (CO) Detection PRODUCTS. Accessories Conventional Detectors

Carbon Monoxide (CO) Detection PRODUCTS. Accessories Conventional Detectors Carbon Monoxide (CO) Detection PRODUCTS Accessories Conventional Detectors 2 Complete CO Detection The system-connected CO1224T and CO1224TR CO detectors with RealTest provide early warning by using reliable

More information

Using your LED Plus keypad

Using your LED Plus keypad Using your LED Plus keypad System 238 System 2316 System 238i System 2316i Part Number 5-051-372-00 Rev B Thank you for purchasing this C&K alarm system Your system is one of the most powerful and advanced

More information

Users Guide to Keypad Functions

Users Guide to Keypad Functions Users Guide to Keypad Functions MANUAL NO. 700-175-01J ISSUED JAN 2002 VERSION 1.41 Summary of Operation A rm/ disarm [#] + [USER CODE] Quick Quick Quick Panic Fire Medical Away Arm Stay Arm Stay Arm &

More information

The Basics of Robot Mazes Teacher Notes

The Basics of Robot Mazes Teacher Notes The Basics of Robot Mazes Teacher Notes Why do robots solve Mazes? A maze is a simple environment with simple rules. Solving it is a task that beginners can do successfully while learning the essentials

More information

Cellular Medical Alert User s Guide

Cellular Medical Alert User s Guide Cellular Medical Alert User s Guide What s in the Box 70 F MAY 03 FRI 10:05 AM RESET 70 F Volume: 10:05 AM RESET RESET + TEST TEST Cellular Base Station Neck Pendant and/or Wrist Button Setup Guide Cellular

More information

INSTRUCTION MANUAL All-In-One GSM Home Alarm System SB-SP7200-GSM

INSTRUCTION MANUAL All-In-One GSM Home Alarm System SB-SP7200-GSM INSTRUCTION MANUAL All-In-One GSM Home Alarm System SB-SP7200-GSM Revised: August 28, 2014 PRODUCT REFERENCE MOUNTING ACCESSORIES PIR / MOTION DETECTION UNIT MAIN UNIT POWER ADAPTER MOUNTING ACCESSORIES

More information

Quantec Wiring Instructions

Quantec Wiring Instructions Approved Document No. DNUQ777 Rev Quantec Wiring Instructions GENERAL Quantec can be compared to a very sophisticated analogue addressable fire alarm system where the integrity of the wiring is of paramount

More information

COLOR VIDEO DOOR PHONE CDV-71BE/D

COLOR VIDEO DOOR PHONE CDV-71BE/D COLOR VIDEO DOOR PHONE CDV-71BE/D 513-11, Sangdaewon-dong, Jungwon-gu, Seongnam-si, Gyeonggi-do, Korea Int l Business Dept. : Tel.; +82-31-7393-540~550 Fax.; +82-31-745-2133 Web site : www.commax.com Printed

More information

IDS X-Series User Manual 700-398-01D Issued July 2012

IDS X-Series User Manual 700-398-01D Issued July 2012 1 2 Contents 1. Introduction to the IDS X-Series Panels... 7 2. Before Operating Your Alarm System... 7 3. Understanding the Keypad LEDs... 8 3.1 Viewing Data on an LED Keypad... 12 3.1.1 LED Status Indicators...

More information

Explore 3: Crash Test Dummies

Explore 3: Crash Test Dummies Explore : Crash Test Dummies Type of Lesson: Learning Goal & Instructiona l Objectives Content with Process: Focus on constructing knowledge through active learning. Students investigate Newton s first

More information

Bluetooth Hands Free Phone System by BlueConnect

Bluetooth Hands Free Phone System by BlueConnect Bluetooth Hands Free Phone System by BlueConnect USER GUIDE TABLE OF CONTENTS 1 INTRODUCTION Pg Pg WHAT IS BLUECONNECT? 2 WHAT CELL PHONES WORK? 2 DEFECTIVE / DAMAGED MERCHANDISE CUSTOMER CONTACT INFORMATION

More information

Making the CarePoint Resident System right for you. Scaleable solutions for your senior living community

Making the CarePoint Resident System right for you. Scaleable solutions for your senior living community Making the CarePoint Resident System right for you Scaleable solutions for your senior living community Creating a safer CarePoint is a powerful, integrated, easy-to-use Resident Safety System that well

More information

User's Guide. [Home Network] app. Model No.

User's Guide. [Home Network] app. Model No. User's Guide [Home Network] app Model No. Table of Contents Table of Contents 1 Welcome to the Panasonic Home Network System!...5 1.1 What is the Panasonic Home Network System?...5 1.2 What can I use it

More information

Digital Phone @ Home Tutorial

Digital Phone @ Home Tutorial Digital Phone @ Home Tutorial 2 Table of Contents Quick Start Guide... 4 Making Phone Calls... 5 Voicemail Setup... 6 Setup instructions:... 6 To Check Messages:... 6 Quick Key Reference:... 6 Customer

More information

Warehouse R x Inventory Management Software. Technical Overview

Warehouse R x Inventory Management Software. Technical Overview Warehouse R x Inventory Management Software Technical Overview January 19, 2009 System Overview Warehouse R X is the latest version of Daifuku America s Warehouse Control System (WCS) software. It provides

More information

LW-2000-3A. Wireless Auto Dial Alarm System. Sentry Plus User Manual By Global Gadgets

LW-2000-3A. Wireless Auto Dial Alarm System. Sentry Plus User Manual By Global Gadgets LW-2000-3A Wireless Auto Dial Alarm System Sentry Plus User Manual By Global Gadgets Main Features Simple to use keypad for operation and control. The system can store up to 9 telephone numbers: positions

More information

YOUR CONTROL PANEL PANEL

YOUR CONTROL PANEL PANEL YOUR CONTROL PANEL PANEL To change your pass code, please contact Frontpoint Support at: 877-602-5276 support@frontpointsecurity.com Frontpoint Support: 877-602-5276 The Control Panel: System Codes After

More information

Wireless Home Security System Product Manual (Model #80355)

Wireless Home Security System Product Manual (Model #80355) Wireless Home Security System Product Manual (Model #80355) Installation Instructions During set-up, if no key is pressed for 15 seconds it will come out of the setup mode and you will have to start over.

More information

PhoneWatch Smart Security System User Manual - Domonial

PhoneWatch Smart Security System User Manual - Domonial PW0002 10/13 Customer Support: 1850 753 753 PhoneWatch Ltd., Unit 3/4, Sandyford Park, Burton Hall Rd, Sandyford Industrial Estate, Dublin 18. Email: info@phonewatch.ie PhoneWatch Smart Security System

More information

Ademco Vista-20P/First Alert FA-168C Basic Commands

Ademco Vista-20P/First Alert FA-168C Basic Commands Zones 64 total Ademco Vista-20P/First Alert FA-168C Basic Commands Wireless Yes, Zones 09 to 48 + 16 Keyfob Zones (Zones 49 to 64) Batteries Downloadable Partitions 2 12 volt Rechargable inside main Panel,

More information

Sona Systems, Ltd. EXPERIMENT MANAGEMENT SYSTEM Master Documentation Set

Sona Systems, Ltd. EXPERIMENT MANAGEMENT SYSTEM Master Documentation Set Sona Systems, Ltd. EXPERIMENT MANAGEMENT SYSTEM Master Documentation Set Version 2.65 Copyright 2006 Sona Systems, Ltd., All Rights Reserved About This Manual This manual covers usage of the system from

More information

PRODUCT WARRANTY. Page 20

PRODUCT WARRANTY. Page 20 PRODUCT WARRANTY Manufactured equipment is warranted to be free from defects in material and workmanship for a period of twelve (12) months from date of manufacture as indicated by the date stamp and/or

More information

USER INSTRUCTIONS CONTENTS

USER INSTRUCTIONS CONTENTS CONTENTS Full Set [1]...2 Part Set [2]...2 Night Set [3]...3 Unsetting...3 Unsetting after or during an alarm...3 Testing the system [5]...3 Isolating zones [6]...4 Reprogramming codes [8]...4 Chime facility

More information

OVERVIEW OF THE PROJECT...

OVERVIEW OF THE PROJECT... SYSTEMS ENGINEERING DESIGN PROJECT ENPM 643, Fall 2006 Instructor Authors ENPM643 Dr. M Austin Atul Mehta & Felipe Leite Fall 2006 TABLE OF CONTENTS Section Page 1 OVERVIEW OF THE PROJECT... 3 1.1 PURPOSE...

More information

IDS. Users Guide to Keypad Functions S E C U R I T Y MANUAL NO. 700-171-01B ISSUED AUG 2002 VERSION 1.18

IDS. Users Guide to Keypad Functions S E C U R I T Y MANUAL NO. 700-171-01B ISSUED AUG 2002 VERSION 1.18 INHEP DIGITAL IDS S E C U R I T Y Users Guide to Keypad Functions MANUAL NO. 700-171-01B ISSUED AUG 2002 VERSION 1.18 Summary of Operation A rm/ disarm [#] + [USER CODE] Quick Quick Quick Away Arm Stay

More information

Fire Alarm system Installation Guide

Fire Alarm system Installation Guide Fire Alarm system Installation Guide Fire Alarm System Categories Systems designed for Protection of Property only, fall into two classifications P1 or P2. but a manual system is also needed, then this

More information

Wireless Alarm system s manual

Wireless Alarm system s manual MOUNTVIEW TECH AUSTRALIA PTY LTD Wireless Alarm system s manual ADS A180 Series ADS Security 1/11/2011 1. Before You Begin For your safety and the safety of others, and to ensure that you get the most

More information

CANADA SAVINGS BONDS WEB TRANSMISSION GUIDE 2014. csb.gc.ca PAYROLL SAVINGS PROGRAM 20$ 40$ 80$ 50 $ 30$ WEBGUIDE-14

CANADA SAVINGS BONDS WEB TRANSMISSION GUIDE 2014. csb.gc.ca PAYROLL SAVINGS PROGRAM 20$ 40$ 80$ 50 $ 30$ WEBGUIDE-14 7 WEB TRANSMISSION GUIDE 204 CANADA SAVINGS BONDS csb.gc.ca PAYROLL SAVINGS PROGRAM 40$ 5$ 30$ 0$ 20$ 80$ 70$ 0$ What are you saving for? 50 $ 40$ 20 0$ 80$ 4 20$ 7 7 $ $ $ $ $ $ $ $ $ $ $ $ WEBGUIDE-4

More information

How to Use Motion Detection in ACTi Cameras

How to Use Motion Detection in ACTi Cameras ACTi Knowledge Base Category: Installation & Configuration Note Sub-category: Application Model: All Firmware: N/A Software: N/A Author: Ando.Meritee Published: 2010/11/19 Reviewed: 2011/03/02 How to Use

More information

Virtual Heart User Manual Username Password

Virtual Heart User Manual Username Password Virtual Heart User Manual Username Password These instructions are meant to help you use the Virtual Heart website. Please write down your username and password and store them in a safe place in case you

More information

Journal of Emerging Trends in Computing and Information Sciences

Journal of Emerging Trends in Computing and Information Sciences Sleep Walking Prevention (SWP) Alarm System 1 Kuo-pao Yang, 2 Theresa Beaubouef, 3 Johnnie Morrison 1, 2, 3 Department of Computer Science and Industrial Technology, Southeastern Louisiana University,

More information

Wespot. SecNurse A NEW GENERATION TECHNICAL AIDS USER S GUIDE

Wespot. SecNurse A NEW GENERATION TECHNICAL AIDS USER S GUIDE Wespot SecNurse A NEW GENERATION TECHNICAL AIDS USER S GUIDE EN This manual is published by OPTEX, without any warranty. Improvements and changes to this manual necessitated by typographical errors, inaccuracies

More information

Monitoring Network DMN

Monitoring Network DMN Monitoring Network DMN User Manual Table of contents Table of contents... 2 1. Product features and capabilities... 3 2. System requirements... 5 3. Getting started with the software... 5 3-1 Installation...

More information

TABLE OF CONTENTS TABLE OF CONTENTS. 1. Introduction:

TABLE OF CONTENTS TABLE OF CONTENTS. 1. Introduction: TABLE OF CONTENTS TABLE OF CONTENTS 1. Introduction: General... 4 Telephone Layout... 4 Key Definitions... 5 IP Telephone Log In/Out Hot Desking... 16 Speed Dial Programming Personal or Station... 17 Speed

More information

LONDON BOROUGH OF BROMLEY STANDARDS FOR HOUSES IN MULTIPLE OCCUPATION (HMO) INTRODUCTION

LONDON BOROUGH OF BROMLEY STANDARDS FOR HOUSES IN MULTIPLE OCCUPATION (HMO) INTRODUCTION LONDON BOROUGH OF BROMLEY STANDARDS FOR HOUSES IN MULTIPLE OCCUPATION (HMO) INTRODUCTION 1. Minimum Standards: This document sets out the minimum standards required in HMOs located within the London Borough

More information

Iphone & Android App Smart GSM Home Alarm System

Iphone & Android App Smart GSM Home Alarm System Iphone & Android App Smart GSM Home Alarm System PST-GA242Q User Guide Version V14.3 Dear User, Thanks for selecting the intelligent alarm system. Please read through this guide before installation so

More information

Windows Scheduled Task and PowerShell Scheduled Job Management Pack Guide for Operations Manager 2012

Windows Scheduled Task and PowerShell Scheduled Job Management Pack Guide for Operations Manager 2012 Windows Scheduled Task and PowerShell Scheduled Job Management Pack Guide for Operations Manager 2012 Published: July 2014 Version 1.2.0.500 Copyright 2007 2014 Raphael Burri, All rights reserved Terms

More information

IMPLEMENTING VEHICLE LOCATION SYSTEM FOR PUBLIC BUSES IN SINGAPORE

IMPLEMENTING VEHICLE LOCATION SYSTEM FOR PUBLIC BUSES IN SINGAPORE IMPLEMENTING VEHICLE LOCATION SYSTEM FOR PUBLIC BUSES IN SINGAPORE Silvester Prakasam 1 and Adeline Wang 1 ABSTRACT A Vehicle Location System will be implemented in Singapore in conjunction with the contactless

More information

SONA SYSTEMS RESEARCHER DOCUMENTATION

SONA SYSTEMS RESEARCHER DOCUMENTATION SONA SYSTEMS RESEARCHER DOCUMENTATION Introduction Sona Systems is used for the scheduling and management of research participants and the studies they participate in. Participants, researchers, principal

More information

Security System Owner s Manual

Security System Owner s Manual Security System Owner s Manual Interactive Technologies Inc. 2266 North 2nd Street North St. Paul, MN 55109 FCC Notices FCC Part 15 Information to the User Changes or modifications not expressly approved

More information

The second goal is to provide a list of tips, tricks, and best known methods that have been discovered over the life span of the course.

The second goal is to provide a list of tips, tricks, and best known methods that have been discovered over the life span of the course. ECE1882 LEGO NXT Brick Programming Guide Introduction This document was written with two goals in mind. The first is to orient a new user to the graphical programming language used in the MindSpring NXT

More information

DPC-536 Programming and Debug Guide

DPC-536 Programming and Debug Guide DPC-536 Programming and Debug Guide CONTENTS 1. Introduction ------------------------------------------------------------------------------- 2 2. System Password and Master Card -----------------------------------------------------

More information

ITC-BTTN Cellular Bluetooth Gateway. Owner s Manual 1

ITC-BTTN Cellular Bluetooth Gateway. Owner s Manual 1 ITC-BTTN Cellular Bluetooth Gateway Owner s Manual 1 2 Table of Contents Introduction...3 Package Contents...3 XLink Connections Diagram...4 Setup...5 Pairing your Bluetooth Cell Phone to the XLink...6

More information

CONTENTS QUICK SETUP & INSTALLATION USER MANUAL. SUPA8 Quick Setup & User Manual

CONTENTS QUICK SETUP & INSTALLATION USER MANUAL. SUPA8 Quick Setup & User Manual SUPA8 Quick Setup & User Manual QUICK SETUP & INSTALLATION CONTENTS FACTORY DEFAULTS... 1 INSTALLATION OF THE SECURITY SYSTEM... 2 COMMISSIONING THE DIALLER PANEL... 5 ZONE INPUT CONNECTIONS... 7 PANEL

More information

POINT OF SALES SYSTEM (POSS) USER MANUAL

POINT OF SALES SYSTEM (POSS) USER MANUAL Page 1 of 24 POINT OF SALES SYSTEM (POSS) USER MANUAL System Name : POSI-RAD System Release Version No. : V4.0 Total pages including this covering : 23 Page 2 of 24 Table of Contents 1 INTRODUCTION...

More information

Basic Alarm BD-5000. A. What You Will Need: 1. One 9-volt alkaline or lithium battery (not included). 2. Phillips screwdriver (not included) 2

Basic Alarm BD-5000. A. What You Will Need: 1. One 9-volt alkaline or lithium battery (not included). 2. Phillips screwdriver (not included) 2 Basic Alarm BD-5000 1 Model BD-5000 Thank you for purchasing the Basic Alarm BD-5000. If you should ever have any questions or concerns about this product, feel free to contact us. Our phone number, web

More information

Quick Start Guide for Online Medical Certifiers and Online Support Staff

Quick Start Guide for Online Medical Certifiers and Online Support Staff Quick Start Guide for Online Medical Certifiers and Online Support Staff Vitals Information Partnership (VIP) Electronic Death Registration System (EDRS) Revision July 1, 2014 Notes Notes Use this page

More information

90 Degree PIR Wireless Security Sensor. Installation Instructions 5420/90F

90 Degree PIR Wireless Security Sensor. Installation Instructions 5420/90F 90 Degree PIR Wireless Security Sensor Installation Instructions 5420/90F Copyright Clipsal Australia P/L 2007. All rights reserved. Clipsal is a registered trademark of Clipsal Australia Pty Ltd. The

More information

Alerting, Recording and Motion Detection Guide

Alerting, Recording and Motion Detection Guide Alerting, Recording and Motion Detection Guide This document is intended to be used as a general guide to the set up and use of the motion detection and recording features of the cameras offered in the

More information

Hotel Accessibility Pack

Hotel Accessibility Pack Hotel Accessibility Pack Thank you for considering the Hilton Dublin City. We are pleased to provide you with some information regarding our hotel that you may find useful when planning your visit to our

More information

Guideline for stresstest Page 1 of 6. Stress test

Guideline for stresstest Page 1 of 6. Stress test Guideline for stresstest Page 1 of 6 Stress test Objective: Show unacceptable problems with high parallel load. Crash, wrong processing, slow processing. Test Procedure: Run test cases with maximum number

More information

STAB22 section 1.1. total = 88(200/100) + 85(200/100) + 77(300/100) + 90(200/100) + 80(100/100) = 176 + 170 + 231 + 180 + 80 = 837,

STAB22 section 1.1. total = 88(200/100) + 85(200/100) + 77(300/100) + 90(200/100) + 80(100/100) = 176 + 170 + 231 + 180 + 80 = 837, STAB22 section 1.1 1.1 Find the student with ID 104, who is in row 5. For this student, Exam1 is 95, Exam2 is 98, and Final is 96, reading along the row. 1.2 This one involves a careful reading of the

More information

Confined Space Rescue

Confined Space Rescue Both the Building Code and Fire Code require us to have a suitable emergency response plan to get our workers to safety. The confined space legislation puts confined space rescue squarely on the shoulders

More information

Contents 1. Terms you may neeed to know 2. Keypad Lights 3, 4. Keypad Buttons 5

Contents 1. Terms you may neeed to know 2. Keypad Lights 3, 4. Keypad Buttons 5 Security Alarm System Owner's Guide 8 sector CDS Dialler Version 2.0 lcopm.pm6 Contents Contents 1 Terms you may neeed to know 2 Keypad Lights 3, 4 Keypad Buttons 5 User Functions Fully Arming the System

More information

Wireless Multimedia Technologies for Assisted Living

Wireless Multimedia Technologies for Assisted Living Second LACCEI International Latin American and Caribbean Conference for Engineering and Technology (LACCEI 2004) Challenges and Opportunities for Engineering Education, Research and Development 2-4 June

More information

Rogers Smart Home Monitoring QUICK START GUIDE ROG_6093_QST_GDE_EN.indd 1 9/22/12 8:29 AM

Rogers Smart Home Monitoring QUICK START GUIDE ROG_6093_QST_GDE_EN.indd 1 9/22/12 8:29 AM Rogers Smart Home Monitoring QUICK START GUIDE STAY CONNECTED TO YOUR HOME AND YOUR FAMILY. This Quick Start Guide is designed to help you get the most out of your new system right away and help ensure

More information

FIRST ALERT INSTRUCTION MANUAL FOR FA 270 KEYPADS SECURITY SYSTEM

FIRST ALERT INSTRUCTION MANUAL FOR FA 270 KEYPADS SECURITY SYSTEM FIRST ALERT INSTRUCTION MANUAL FOR FA 270 KEYPADS SECURITY SYSTEM Page 0 Table of Contents Introduction 1 System Basics.. 1 Burglary Protection.. 1 Fire Protection.. 1 Security Codes. 1 Zones and Partitions

More information

PSTN Home Alarm System

PSTN Home Alarm System PSTN Home Alarm System User Manual Model: PST-TEL99E Please read this user guide carefully before operation and installation. Contents 1. Product Overview... - 3-2. Main Function & Features... - 3-3. For

More information

INSTRUCTION MANUAL PC5OO WITH PC5OORK KEYPAD

INSTRUCTION MANUAL PC5OO WITH PC5OORK KEYPAD INSTRUCTION MANUAL PC5OO WITH PC5OORK KEYPAD TABLE OF CONTENTS SYSTEM INFORMATION 2 INTRODUCTION 3 Test Your System Regularly...3 Important Notice...3 Glossary...3 BASIC OPERATION 4 Arming Your System...4

More information

WIRELESS SENSOR BATTERY REPLACEMENT INSTRUCTIONS For Safewatch Residential and Small Business Control Panels

WIRELESS SENSOR BATTERY REPLACEMENT INSTRUCTIONS For Safewatch Residential and Small Business Control Panels www.adt.com WIRELESS SENSOR For Safewatch Residential and Small Business Control Panels Your ADT Safewatch QuickConnect, SafeWatch 3000 or Vista Series residential or small business security system may

More information

User Manual GSM Alarm System. www.deltasecurity.cn. All rights reserved by Delta Security Co., Ltd

User Manual GSM Alarm System. www.deltasecurity.cn. All rights reserved by Delta Security Co., Ltd User Manual GSM Alarm System All rights reserved by Delta Security Co., Ltd Dear Clients, Thank you for using our GSM Alarm System. We are committed to giving you the best home security available today

More information

Electronic Docket Filings Michigan Public Service Commission Department of Licensing and Regulatory Affairs

Electronic Docket Filings Michigan Public Service Commission Department of Licensing and Regulatory Affairs Electronic Docket Filings Michigan Public Service Commission Department of Licensing and Regulatory Affairs How to Electronically File Documents in Cases Before the Michigan Public Service Commission (E-Dockets

More information

HILLS Series LED Code Pad User Manual

HILLS Series LED Code Pad User Manual HILLS Series LED Code Pad User Manual Not all features may be available on your system Check with your installer to find out which features are programmed Page 2 TABLE OF CONTENTS Code Pad Diagrams...2

More information

Car Alarm Series 2 B 2 Buttons

Car Alarm Series 2 B 2 Buttons Car Alarm Series 2 B 2 Buttons G22 SE (External - Shock Sensor) Version 3 Software 67 Plus www.geniuscaralarm.com 21 CAR ALARM GENIUS Series 2B 2 Buttons - G22 Se (External Shock Sensor) Module controlled

More information

Power Monitoring Expert 7.2

Power Monitoring Expert 7.2 Power Monitoring Expert 7.2 PDF version of the Web Applications online help 7ENxx-00xx-00 07/2013 PDF version of the Web Applications online help Safety information Safety information Important information

More information

ValueOptions Provider Guide to using Direct Claim Submission

ValueOptions Provider Guide to using Direct Claim Submission ValueOptions Provider Guide to using Direct Claim Submission www.valueoptions.com Table of Contents Introduction 1 Submitting a New Claim 3 Searching for Claims 9 Changing or Re-processing a claim 13 Submitting

More information

PROFESSIONAL HOME ALARM SYSTEM. Important! Please read these instructions carefully.

PROFESSIONAL HOME ALARM SYSTEM. Important! Please read these instructions carefully. WIRELESS AUTODIAL HOME ALARM SYSTEM AM2000 Instructions for use Important! Please read these instructions carefully. IMPORTANT 1 IDENTIFICATION PLEASE CONTACT BEFORE RETURNING THIS PRODUCT TO THE RETAILER

More information

CONNECTING LESSONS NGSS STANDARD

CONNECTING LESSONS NGSS STANDARD CONNECTING LESSONS TO NGSS STANDARDS 1 This chart provides an overview of the NGSS Standards that can be met by, or extended to meet, specific STEAM Student Set challenges. Information on how to fulfill

More information

Home alarm system. User s manual. Profile To better understand this product, please read the user s manual carefully before using.

Home alarm system. User s manual. Profile To better understand this product, please read the user s manual carefully before using. Home alarm system User s manual Profile To better understand this product, please read the user s manual carefully before using. Features; 1. 1-99 LED wireless defense zone, with digital number to show

More information

Design and Implementation of an Accidental Fall Detection System for Elderly

Design and Implementation of an Accidental Fall Detection System for Elderly Design and Implementation of an Accidental Fall Detection System for Elderly Enku Yosef Kefyalew 1, Abubakr Rahmtalla Abdalla Mohamed 2 Department of Electronic Engineering, Tianjin University of Technology

More information

Elementary Physical Education Substitute Activities. Sample Packets

Elementary Physical Education Substitute Activities. Sample Packets Elementary Physical Education Sample Packets The star system for creating successful and meaningful physical education activities for students and staff For more information visit http://www.advantagepress.com

More information

Using Your. Security System With Icon Keypad S5020, S5021, S5022

Using Your. Security System With Icon Keypad S5020, S5021, S5022 Using Your Security System With Icon Keypad S5020, S5021, S5022 Contents 1 Overview Your Security System... 1 How Your Security System Works... 2 Your System's Programming... 3 Getting Used to Your System...

More information

Personal Call Manager User Guide. BCM Business Communications Manager

Personal Call Manager User Guide. BCM Business Communications Manager Personal Call Manager User Guide BCM Business Communications Manager Document Status: Standard Document Version: 04.01 Document Number: NN40010-104 Date: August 2008 Copyright Nortel Networks 2005 2008

More information

TS590. Intruder Alarm Control Panel. SYSTEM OPEN 17:30 01 Jan ENT 0 ESC

TS590. Intruder Alarm Control Panel. SYSTEM OPEN 17:30 01 Jan ENT 0 ESC TS590 Intruder Alarm Control Panel 7:0 0 Jan _ ~ A B 5 6 C 7 8 9 D 0 ESC Setting the System Enter your passcode XXXX then leave the protected area. Unsetting the System Go directly to the keypad and en

More information

S I E R R A PRODUCT INFORMATION GUIDE FOR HOME SECURITY. SIERRA Page 1

S I E R R A PRODUCT INFORMATION GUIDE FOR HOME SECURITY. SIERRA Page 1 S I E R R A PRODUCT INFORMATION GUIDE FOR HOME SECURITY SIERRA Page 1 C O N T E N T S USING YOUR SIERRA SYSTEM: Turning On/Off Home Arming Instant Home Arming Quick Exit Mode Chime Mode SPECIAL FUNCTIONS:

More information

Intelligent Alarm System

Intelligent Alarm System Intelligent Alarm System User Manual Ver 12-3 Dear users, Thank you for having selected the intelligent alarm system. Please read through this manual before installation so as to operate properly. The

More information

Transition to Community Nursing Practice

Transition to Community Nursing Practice Transition to Community Nursing Practice Contents Section A - Thinking about working in the community Chapter 1 - What is community nursing Chapter 2 - Making the transition Section B - Working in the

More information

Module 3 Training for the HomeChoice SmartCare (version 10.4) Software. Participant s Workbook

Module 3 Training for the HomeChoice SmartCare (version 10.4) Software. Participant s Workbook Module 3 Training for the HomeChoice SmartCare (version 10.4) Software Participant s Table of Contents Learning Objectives...2 Topics Covered in this Module...3 Chapter 1: Software Update Overview...4

More information

SINGTEL BUSINESS DIGITAL LINE (BDL) ADD-ON USER GUIDE

SINGTEL BUSINESS DIGITAL LINE (BDL) ADD-ON USER GUIDE SINGTEL BUSINESS DIGITAL LINE (BDL) ADD-ON USER GUIDE Feature Description How to Activate How to Deactivate Notes Caller ID Caller ID lets you know who is calling by displaying his/her number on your telephone

More information

Sona Systems, Ltd. EXPERIMENT MANAGEMENT SYSTEM Master Documentation Set

Sona Systems, Ltd. EXPERIMENT MANAGEMENT SYSTEM Master Documentation Set Sona Systems, Ltd. EXPERIMENT MANAGEMENT SYSTEM Master Documentation Set Version 2.74 Copyright 2010 Sona Systems, Ltd., All Rights Reserved About This Manual This manual covers usage of the system from

More information

Portable Air Conditioner

Portable Air Conditioner Portable Air Conditioner Owner's Manual Model:3 in 1 12,000 Btu/h Series 3 Please read this owner s manual carefully before operation and retain it for future reference. CONTENTS 1. SUMMARY...1 2. PORTABLE

More information

MANUAL USER GUIDE FOR EMR PRIMARY HEALTH CARE SYSTEM

MANUAL USER GUIDE FOR EMR PRIMARY HEALTH CARE SYSTEM MANUAL USER GUIDE FOR EMR PRIMARY HEALTH CARE SYSTEM By Faustin GASHAYIJA Version 1.0 1 Table of contents Contents Table of contents... 2 Browser... 4 Log in openmrs website... 4 OpenMRS welcome page...

More information

AMI MARINE (UK) LTD BRIDGE NAVIGATIONAL WATCH ALARM SYSTEM (BNWAS) Operation Manual KW810

AMI MARINE (UK) LTD BRIDGE NAVIGATIONAL WATCH ALARM SYSTEM (BNWAS) Operation Manual KW810 AMI MARINE (UK) LTD BRIDGE NAVIGATIONAL WATCH ALARM SYSTEM (BNWAS) Operation Manual KW810 This Manual and the information contained therein is the property of AMI Marine (UK) Ltd. It must not be reproduced

More information

I.S. 3218 :2013 Fire Detection & Alarm Systems

I.S. 3218 :2013 Fire Detection & Alarm Systems I.S. 3218 :2013 Fire Detection & Alarm Systems Overview of significant changes 26 th March 2014 FPS Ltd Today s Programme Commencement Transition Competence & Qualifications System Certification System

More information

User s Information Guide R1A

User s Information Guide R1A HSC505-R Home Security Controller - User Manual Release R1a Pi HSC505 and Pi HSC505R Home Security Controller User s Information Guide R1A Page 1 QD Dynamics (Pty) Ltd reserves the right to make changes

More information

Peru State College Distance Education Student s Guide

Peru State College Distance Education Student s Guide Using YouTube for Online Courses - Peru State College Distance Education Student s Guide - YouTube Videos & Your Blackboard Course Introduction & Reasons for Using YouTube 1 Creating a YouTube Account

More information

MySphere Assistant User Guide

MySphere Assistant User Guide MySphere Assistant User Guide Release 070420 Document Version 1 TeleSphere 9237 E. Via de Ventura Blvd. 2 nd Floor Scottsdale, AZ 85258 888-MYSPHERE 480.385.7007 WWW.TELESPHERE.COM Page 1 of 44 Table of

More information

Maintenance Manual PC6010. WARNING This manual contains information on limitations regarding product use and function

Maintenance Manual PC6010. WARNING This manual contains information on limitations regarding product use and function WARNING This manual contains information on limitations regarding product use and function and information on the limitations as to liability of the manufacturer. The entire manual should be carefully

More information