User manual. Misterhouse

Size: px
Start display at page:

Download "User manual. Misterhouse"

Transcription

1 DSC Alarm PC5401 Serial Module User manual Misterhouse DSC Alarm PC5401 Serial Module Version

2 DSC Alarm PC5401 Serial Module AUTHOR Gaétan Lord Jocelyn Brouillard

3 TABLE OF CONTENTS Page 1 INTRODUCTION HARDWARE INSTALLATION PC5401 SERIAL MODULE Baud Rate Selection Module connection LEDs Indicator SERIAL CABLE MISTERHOUSE INTEGRATION MH.PRIVATE.INI CONFIGURATION MH.PRIVATE.INI Configuration File Example DSC SERIAL MODULE PERL LIBRARY Command List and Data Format PERL PROGRAMMING EXAMPLE Basic WEB INTERFACE LOGS DSC MESSAGES ERROR MESSAGES RESTRICTIONS...14 /3

4 TABLES Table 1 - Baud Rate Selection...2 Table 2 - LEDs Indicator...3 Table 3 - MH DSC functions...7 Table 4 - Command List and Format...8 Table 5 - DSC Messages Description and Format...12 Table 6 - Errors Messages Description...13 FIGURES Figure 1 - PC5401 Board Component...3 Figure 2 - Serial Cable...3 /4

5 CHANGE HISTORY Change Description Date Version By Manual creation Jocelyn B. First general review and adding comments Gaetan L. Formatting Gaetan comments and complete first release Jocelyn B. /5

6 1 INTRODUCTION That document present the integration between Misterhouse and DSC Alarm System via its PC5401 serial module. This information and Perl code replace old code (code/public/dsc_pc5401.pl) included in the MH release 2.97 posted on 01/23/2005. Warnings: This document is our first release and some mistake can exist. DSC Alarm PC5401 Serial Module /1

7 2 HARDWARE INSTALLATION Warnings: Before installation of PC5401 Serial Module Remove existing PC5400 Printer Module (With panel powered down) Enable DSC Alarm Supervision (function 902) Now install PC5401 Serial Module (With panel powered down) Enable DSC Alarm Supervision (function 902) 2.1 PC5401 Serial Module For all official specification read carefully DSC documentation. Remember by adding new composite in your Alarm Panel require to calculate the Current Draw to calibrate de power requirement with panel power supply. This board require: 35mA Notes: Its recommended, that all DSC Alarm equipments installation must be done by an authorize representative (Service Persons Only) Warnings: Disconnect the AC power supply module and panel batteries before to install the new card Baud Rate Selection BAUD selection can only be changed by cycling power to the module (Default: 9600 BAUD) BAUD JP3 JP2 JP ON ON Off 9600 Off Off Off ON Off ON ON Off Off Table 1 - Baud Rate Selection DSC Alarm PC5401 Serial Module /2

8 2.1.2 Module connection DSC PC5401 JP1 JP2 JP3 RED BLK YEL GRN DSC Key Bus KEY RX TX PWR Serial DB9 Connect module to the KEYBUS With panel powered down Select desired BAUD using JP1-3 Default is 9600 Baud Connect an RS-232 cable to the application Power up the system Figure 1 - PC5401 Board Component LEDs Indicator LED Description Normal Operation Notes KEY KEYBUS Link Active GREEN Solid PWR Module Status RED Flashing (2 seconds) Solid RED: The module is NOT operating properly RX TX Serial Communication Activity Table 2 - LEDs Indicator Flashing when Receive and transmit data 2.2 Serial Cable DSC PC5401 Side 2 Red (TX) 3 Black (RX) 5 Yellow (SG) NC PC (x86) Side Jump (DCD, DSR et DTR) 7-8 Jump ensemble (CTS et RTS) 9 NC (RI) 2 Red (RX) 3 Black (TX) 5 Yellow (SG) PC5401 DB9 - Male SG - PIN DCD - 1 RX - 2 TX - 3 DTR - 4 SG - 5 DSR - 6 RTS - 7 CTS - 8 RI - 9 PC (x86) DB9 - Male PIN - SG 1 - DCD 2 - RX 3 - TX 4 - DTR 5 - SG 6 - DSR 7 - RTS 8 - CTS 9 - RI (NC = No Connect) Figure 2 - Serial Cable DSC Alarm PC5401 Serial Module /3

9 3 MISTERHOUSE INTEGRATION To integrate PC5401 into Misterhouse, first configure properly MH.PRIVATE.INI and begin your personal code with the following example files. Copy both in your personal MH code directory (ex.: /mh/code/mycode). DSC5401.pm: This example file include basic functions between the DSC Alarm panel and Misterhouse (Generic Function and communications) DSC5401_example.pl: This is the one you need to get access to the panel; this example file has 2 sections. The 1 st section present example code. The second example section is web-based event. Some of them are needed to trigger specific event, like thermostat broadcast etc. The card allow mainly passive event (no user intervention), so it listen to the serial port for information provided by the card. The module will change state regarding the information receive 3.1 MH.PRIVATE.INI Configuration There is much information in the mh.private.ini file. These allow getting a better way to display events information, every zone and user partition. The mh.private.ini configuration specifications are: User number need 4 digit to define them "9999" Zone number need 3 digit "999" Partition number need 1 digit "9" 3 parameters are required to tell interface specification configuration and module start-up name And 5 parameters to tell which information you want to put in the log file. Description Syntax Option Module start-up name DSC_5401_module=DSC5401 None Define which serial port for interfacing PC5401 in MH. DSC_5401_serial_port=/dev/ttyM5 Specify the communication speed. DSC_5401_baudrate=XXXX If you enable it, DSC alarm broadcast his time every 4 minutes, see command table (056) and message table for (550) events. Note: this Option must be activate, by default is Off DSC_5401_time_log=X On/Off (1,0) If you have the escort module, it will write in the log when a phone ring is detected, see message table for (560) event. DSC_5401_ring_log=X On/Off (1,0) DSC Alarm PC5401 Serial Module /4

10 If you enable it, DSC Thermostat broadcast his temperature every 1 minutes Note: this Option must be activate, by default is Off DSC_5401_temp_log=X On/Off (1,0) DSC_5401_part_log=1 If you want to see partition status (even when alarm is no on) DSC_5401_part_log=X On/Off (1,0) DSC_5401_zone_log=1 if you want to see zone status DSC_5401_zone_log=X On/Off (1,0) MH.PRIVATE.INI Configuration File Example Section Setup Options Partitions Dfiiti Users Definition Zones Definition MH.PRIVATE.INI Parameters DSC_5401_module=DSC5401 DSC_5401_serial_port=/dev/ttyM5 DSC_5401_baudrate=9600 DSC_5401_time_log=1 DSC_5401_ring_log=1 DSC_5401_temp_log=1 DSC_5401_part_log=1 DSC_5401_zone_log=1 DSC_5401_part_1=Home DSC_5401_part_2=Garage DSC_5401_user_0001=Mary DSC_5401_user_0003=Tom DSC_5401_user_0040=MisterHouse DSC_5401_zone_001=Front Door Contact DSC_5401_zone_002=Side Door Contact DSC_5401_zone_003=Upstair Motion Detector DSC_5401_zone_004= Basement Motion Detector DSC_5401_zone_005=First Floor Motion Detector DSC Alarm PC5401 Serial Module /5

11 3.2 DSC Serial Module Perl Library To enable PC5401.pm file (Generic Function and communication setup) you have to put the following 2 lines in a "MyPersonalNewCode.pl" file. use DSC5401 $DSC= new DSC5401; All most information we can get from your example code are: Zone status Partition status Triger some information brodcast like Time and Tempurature (required Escort module and thermostat) Arm, Disarm, Alarm and which user The majority of specific request can be made by a call {}. The function $DSC->{zone_now}, call a subroutine zone_now in PC5401.pm file. This will return the element content of the present hash. On the other hand, a call such with specify the zone number must be this way $DSC->status_zone(1) cannot be done with { and } character. When Misterhouse finished its MH pass, the actual value will be transfer in specific state by: $DSC->{zone_now} ==> $DSC->zone(3) $DSC->{zone_now_msg} ==> $DSC->zone_msg(3) $DSC->{zone_now_status} ==> $DSC->zone_status(3) All this information is available via a function call like $DSC->{FunctionName}. Syntax: $DSC->FunctionName(Zone#) Example: $DSC->status_zone(12) This will be return the zone 12 status DSC Alarm PC5401 Serial Module /6

12 The FunctionName value is the status command requested. There is a lot of state you could query: Function Name zone_now(zone #) zone_now_msg(zone #) zone_now_status(zone #) zone_msg(zone #) zone_status( Zone #) zone_time( Zone #) zone_epoch(zone #) partition_now User cmd_list Description Return the present status, before the pass is finish (see notes bellow) Return message about zone (see notes bellow) Return the current zone state open, close, etc..., (see notes bellow) Last message about zone number, ex.: $DSC->zone_msg(3) The current zone state (open, close, etc), ex.: $DSC->zone_status(3) The time this state occurs (human form), ex.: $DSC->zone_time(3) The time in second since Jan 1970, ex.: $DSC->zone_epoch(3) Table 3 - MH DSC functions All call with "Now Function Name" are single pass. After the information is kept in the other zone variable the functions are reset to his default value (see ResetDscState function for more details). Example; let say zone 3 is now open and then in your "pl" file: $DSC->{zone_now) will return 3 $DSC->{zone_now_msg} will return a message about what happens on the zone $DSC->{zone_now_status} will return the status of the zone (open, close, etc.) Command List and Data Format For more description about all commands refer to DSC PC5401 Developer s Guide. Name Number Data Length Data Format Poll StatusReport SetDateTime hhmmmmddyy CommandOutputControl 020 2? PartitionArmControl Partition (1-8) PartitionArmControlStayArm Partition (1-8) PartitionArmControlZeroEntryDelay Partition (1-8) PartitionArmControlWithCode Partition (1-8)+Code(6 digit) PartitionDisarmControl Partition (1-8)+Code(6 digit) DSC Alarm PC5401 Serial Module /7

13 VerboseArmingControl On/Off (1,0) TimeStampControl On/Off (1,0) TimeBroadcastControl On/Off (1,0) TemperatureBroadcastControl On/Off (1,0) TriggerPanicAlarm Fire (1) Ambulance (2) Police (3) CodeSend Access Code(6 digit) Table 4 - Command List and Format 3.3 Perl Programming Example Basic Code Example If ( my $ZoneEvent = $DSC->zone_now ) { print_log "DSC->zone_now $ZoneEvent"; } if ( $DSC->zone_now =~ /FrontDoor/ && $DSC- >status_zone('012') eq "open" ) { Speak("Front Door is open"); } if ( my $PartState = $DSC->partition_now ) { print_log "DSC->partition_now $PartState"; } If ( my $AlarmState = $DSC->state_now ) { print_log "DSC->state_now Alarm system is now $AlarmState"; } if ( $DSC->state_now =~ /^disarmed/ && $DSC->user eq "Mary") { Speak("Hello Mary"); } Descriptions This will be trigger the zone status This will monitor zone 12 for open state and calling an external voice function. This will be trigger the Partition status This will be trigger the Alarm state This will monitor User Mary when she disarm the panel and calling an external voice function. 3.4 WEB Interface Because we don't have web page, so far, the only way to get to the code written in DSC5401_Example.pl file is by going the following path. By using the ia5 interface: Go under MrHouse Home icon DSC Alarm PC5401 Serial Module /8

14 Pick Browser Categories icon Pick Alarm icon There you should be able to correlate whit what you have in DSC5401_example file. $v_alarm_cmd_list = new Voice_Cmd "List all DSC panel command"; $DSC->cmd_list if said $v_alarm_cmd_list; $v_alarm_poll = new Voice_Cmd "Poll PC5401 card"; $DSC->cmd("000") if said $v_alarm_poll; $v_alarm_partition_arm = new Voice_Cmd "Arm partition 1 without access code"; $DSC->cmd("PartitionArmControl",1) if said $v_alarm_partition_arm; # here you have to give the user access code, replace #### with the access code # note this is not secure # 033 $v_alarm_partition_arm_code = new Voice_Cmd "Arm partition 1 with code"; $DSC->cmd("PartitionArmControlWithCode","1","####") if said $v_alarm_partition_arm_code; # here you have to give the user access code, replace #### with the access code # note this is not secure # 040 $v_alarm_partition_disarm = new Voice_Cmd "Disarm partition 1 with code"; $DSC->cmd("PartitionDisarmControl","1","####") if said $v_alarm_partition_disarm; # 050 $v_alarm_verbose_arming = new Voice_Cmd "Verbose arming message [0,1]"; $DSC->cmd("VerboseArmingControl",$state) if $state = said $v_alarm_verbose_arming; # 056 $v_alarm_time_broadcast = new Voice_Cmd "Periodical Time Message [0,1]"; $DSC->cmd("TimeBroadcastControl",$state) if $state = said $v_alarm_time_broadcast; # 057 $v_alarm_temp_broadcast_on = new Voice_Cmd "Periodical Temp Message ON"; $DSC->cmd("TemperatureBroadcastControl",1) if said $v_alarm_temp_broadcast_on; $v_alarm_temp_broadcast_off = new Voice_Cmd "Periodical Temp Message OFF"; $DSC->cmd("TemperatureBroadcastControl",0) if said $v_alarm_temp_broadcast_off; DSC Alarm PC5401 Serial Module /9

15 # 010 $v_alarm_set_time_date = new Voice_Cmd "Set Alarm system to the current computer time"; if (said $v_alarm_set_time_date) { my ($sec,$m,$h,$mday,$mon,$year,$wday,$yday,$isdst) = localtime(time); $year = sprintf("%02d", $year % 100); $mon+=1; $m=($m<10)?"0".$m:$m; $h=($h<10)?"0".$h:$h; $mday=($mday<10)?"0".$mday:$mday; $mon=($mon<10)?"0".$mon:$mon; my $TimeStamp="$h$m$mon$mday$year"; &::print_log("setting time on DSC panel to $TimeStamp"); &::logit( "$main::config_parms{data_dir}/logs/dsc5401.$main::year_month_now.log", "Setting time on DSC panel to $TimeStamp" ); $DSC->cmd("SetDateTime",$TimeStamp); } 3.5 Logs There is a log file created for every month, which will contains all DSC events. DSC Alarm PC5401 Serial Module /10

16 4 DSC MESSAGES For more description about all messages refer to DSC PC5401 Developer s Guide. Title Number Data Length Data Format Command Acknowledge Last Command Number (999) Command Error System Error Error code ( ) Time/Date Broadcast hhmmmmddyy Ring Detected Indoor Temperature Broadcast Thermostat (1-4)+Temps(999) Outdoor Temperature Broadcast Thermostat (1-4)+Temps(999) Zone Alarm Partition(1-8)+Zone( ) Zone Alarm Restore Partition(1-8)+Zone( ) Zone Tamper Partition(1-8)+Zone( ) Zone Tamper Restore Partition(1-8)+Zone( ) Zone Fault Zone( ) Zone Fault Restore Zone( ) Zone Open Zone( ) Zone Restored Zone( ) Duress Alarm 620 4? Fire Key Alarm Fire Key Restore Auxiliairy Key Alarm Auxiliairy Key Restore Panic Key Alarm Panic Key Restore Wire Smoke Alarm Wire Smoke Restore Partition Ready Partition(1-8) Partition Not Ready Partition(1-8) Partition Armed Partition(1-8)+Mode(0-3) Partition in Alarm Partition(1-8) Partition Disarmed Partition(1-8) Exit Delay in Progress Partition(1-8) Entry Delay in Progress Partition(1-8) Keypad Lock-Out Partition(1-8) Invalid Code Access Partition(1-8) DSC Alarm PC5401 Serial Module /11

17 Function Not Available Partition(1-8) User Closing Partition(1-8)+User( ) Special Closing Partition(1-8) Partial Closing Partition(1-8) User Opening Partition(1-8)+User( ) Special Opening Partition(1-8) Panel Battery Trouble Panel Battery Trouble Restore Panel AC Trouble Panel AC Restore System Bell Trouble System Bell Trouble Restoral TLM Trouble TLM Trouble Restore TLM Trouble Line TLM Trouble Restore Line FTC Trouble Buffer Near Full Device Low Battery Zone( ) Device Low Battery Restore Zone( ) Wireless Key Low Battery Trouble Key( ) Wireless Key Low Battery Trouble Restore Key( ) Handheld Keypad Low Battery Alarm HHK( ) Handheld Keypad Low Battery Alarm Restore HHK( ) General System Tamper General System Tamper Restore Home Automation Trouble Home Automation Trouble Restore Trouble Status Partition(1-8) Trouble Status Restore Partition(1-8) Fire Trouble Alarm Fire Trouble Alarm Restore Code Required Table 5 - DSC Messages Description and Format DSC Alarm PC5401 Serial Module /12

18 4.1 Error Messages Number Description 000 No Error 001 RS-232 Receive Buffer Overrun 002 RS-232 Receive Buffer Overflow 003 Keybus Transmit Buffer Overrun 010 Keybus Transmit Buffer Overrun 011 Keybus Transmit Time Timeout 012 Keybus Transmit Mode Timeout 013 Keybus TRansmit Keystring Timeout 014 Keybus Not Fonctionning 015 Keybus Busy (attempting arm or disarm) 016 Keybus Busy - Lockout ( too many disarm) 017 Keybus Busy - Insntallers Mode 020 API Command Syntax Error 021 API Command Partition Error (partition out of bound) 022 API Command Not Supported 023 API System Not Armed 024 API System Not Ready To Arm 025 API Command Invalid Length 026 API User Code not Required 027 API Invalid Characters in Command Table 6 - Errors Messages Description DSC Alarm PC5401 Serial Module /13

19 5 RESTRICTIONS There is no way to manage the X10 or thermostat via Escort Module. I will explain why: The 5401 sends and reads information from the keybus. Since the X10 and thermostat are processed through the Escort, we cannot send a command directly. DSC Alarm PC5401 Serial Module /14

Developer s Guide. PC54O1 Serial Interface Module Version 1.0

Developer s Guide. PC54O1 Serial Interface Module Version 1.0 Developer s Guide PC54O1 Serial Interface Module Version 1.0 IMPORTANT This manual contains information on limitations regarding product use and function and information on the limitations as to liability

More information

Modules Programming Guide. paradox.com

Modules Programming Guide. paradox.com Keypad Modules Annunciator Module Motion Detector Modules Zone Expansion Modules Access Control Module Voice Assisted Modules Accessory Modules Integration Module Internet Module Modules Programming Guide

More information

High Security and Access System EVO48 V2.1 EVO192 V2.1

High Security and Access System EVO48 V2.1 EVO192 V2.1 High Security and Access System EVO48 V2.1 EVO192 V2.1 Programming Guide Includes LCD Keypad Programming We hope this product performs to your complete satisfaction. Should you have any questions or comments,

More information

DSC MAXSYS INTEGRATION THROUGH A KT-400 CONTROLLER

DSC MAXSYS INTEGRATION THROUGH A KT-400 CONTROLLER DN NUMBER HERE DSC MAXSYS INTEGRATION THROUGH A KT-400 CONTROLLER The purpose of this application note is to configure the EntraPass system to integrate with the DSC Maxsys tm intrusion panel. Starting

More information

Modules Programming Guide

Modules Programming Guide Modules Programming Guide Programming Methods The modules can be programmed using the following methods: 1) Through the WinLoad Security Management Software. The modules can be programmed at 19,200 baud

More information

DSC PowerSeries Neo Integration

DSC PowerSeries Neo Integration DN2120-1015 DSC PowerSeries Neo Integration The purpose of this application note is to explain how to setup the DSC PowerSeries Neo integration with a KT-400 or a KT-1-M (or PCB) using an RS-232 or IP

More information

2 IDS LCD Keypad User Manual C Issued March 2009

2 IDS LCD Keypad User Manual C Issued March 2009 2 3 4 Contents 1. Introduction to the IDS LCD Digital Keypad...8 2. Arming the Control Panel...8 2.1 Away Arming...8 2.1.1 How to Away Arm...8 2.1.2 Quick Away Arm Shortcut Key...8 2.2 Stay Arming...9

More information

SOFTWARE VERSION 3.10

SOFTWARE VERSION 3.10 738PEP-03 SOFTWARE VERSION 3.10 HEXA PROGRAMMING: Addresses 000 to 043 and 300 to 527 are programmed using the Hexa Programming method. In this mode, you can enter any hexa-digit from 0-F where keys [1]

More information

SILENCING AN ALARM. When the alarm bell or siren is sounding, enter your user code or present your keyfob to your keypad.

SILENCING AN ALARM. When the alarm bell or siren is sounding, enter your user code or present your keyfob to your keypad. S Y S T E M U S E R G U I D E SILENCING AN ALARM When the alarm bell or siren is sounding, enter your user code or present your keyfob to your keypad. IS THIS A FALSE ALARM? YES NO displays. REAL ALARM

More information

MG/SP Series (V4.9/V5.1) What s New

MG/SP Series (V4.9/V5.1) What s New MG/SP Series (V4.9/V5.1) What s New Firmware: SP4000 and SP5 version 5.1 SP5500, SP000, SP7000, and MG5050 version 4.9 (SP5500 pictured) Overview: New Programming Sections New Events New Trouble Display

More information

Metasys Integrator Northern Application

Metasys Integrator Northern Application Metasys Connectivity Technical Manual 629.5 Metasys Integrator Section Application Note Issue Date 0900 APPLICATION NOTE Metasys Integrator Northern Application lntroduction Page *3 Application Details

More information

DAYLIGHT SAVINGS TIME START/END MONTH [ 0 ]0 = Disabled; 1 = Enabled. 1 Start End

DAYLIGHT SAVINGS TIME START/END MONTH [ 0 ]0 = Disabled; 1 = Enabled. 1 Start End RcvrAcct#: Test Date: May, ::PM SYSTEM ENTRY DELAY# [ ] = None, = secs, = secs, = secs, = secs, = secs, = mins [UL installations: The Entry Delay must be set for a maximum of seconds] ENTRY DELAY# [ ]

More information

Property of Monitronics Inc

Property of Monitronics Inc Enter Program Master Code + 8 + 0 + 0 (Display should show 20) or Power down then back up and press * and # within 1 minute (If exiting programming you can re-enter within 1 minute by pressing * and #)

More information

Property of Monitronics Inc

Property of Monitronics Inc Enter Program (Locations 034 to 410) 1. Press Program Button on main panel 2. At keypad press 9 + Program Code (9 8 7 6 5) or 1. Power down with black switch on bottom left of panel 2. Power up while holding

More information

Industrial Serial Device Server

Industrial Serial Device Server 1. Quick Start Guide This quick start guide describes how to install and use the Industrial Serial Device Server. Capable of operating at temperature extremes of -10 C to +60 C, this is the Serial Device

More information

IDS. Users Guide to Keypad Functions S E C U R I T Y MANUAL NO D ISSUED NOVEMBER 2002 VERSION 2.

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

More information

Property of Monitronics Inc

Property of Monitronics Inc Enter Program 1. Master Code + 8 + 0 + 0 (Display should show 20) or Power down then back up and press * and # within 1 minute (If exiting programming you can re-enter within 1 minute by pressing * and

More information

USER GUIDE. for ios Version 1. alula.net ALULA 1

USER GUIDE. for ios Version 1. alula.net ALULA 1 USER GUIDE for ios Version 1 alula.net 1-888-88-ALULA 1 1. GETTING STARTED 3 2. DOWNLOAD THE ALULA APP 3 3. SIGN IN 3 4. 4. LOCATIONS 4 5. MAIN DASHBOARD SCREEN 5 5.1. Application Menu 5 5.3. Feature Menus

More information

TM50 Touch Intuitive Touchscreen

TM50 Touch Intuitive Touchscreen TM50 Touch Intuitive Touchscreen Description With its bright color display, intuitive icons, and menu-driven interface, the TM50 Touch Intuitive Touchscreen reflects Paradox s commitment to user-centric

More information

Contents. 4. Disarming the Control Panel How to Disarm with a User Code How to Disarm using a Key-Switch or Remote...

Contents. 4. Disarming the Control Panel How to Disarm with a User Code How to Disarm using a Key-Switch or Remote... Contents 1. Introduction to the Watchguard WGAP864 LCD Digital Keypad... 6 2. Viewing Violated Zones... 6 3. Arming the Control Panel... 7 3.1 Away Arming... 7 3.1.1 How to Away Arm... 7 3.1.2 Quick Away

More information

Ademco Vista-20SE/First Alert FA-162C Program Sheet

Ademco Vista-20SE/First Alert FA-162C Program Sheet Enter Program 1. 4112 + 8 + 0 + 0 (Display should show 20) or Power down then back up and press * and # within 1 minute (If exiting programming you can re-enter within 1 minute by pressing * and #) Exit

More information

180 Series Keypad. Handbook. Revision 2.1

180 Series Keypad. Handbook. Revision 2.1 180 Series Keypad Handbook Revision 2.1 Revision History Revision 1.0 Initial release Revision 2.0 Major update with addition of 180-40 Added 180-40 to document and various headings Note regarding unique

More information

Property of Monitronics Inc

Property of Monitronics Inc Enter Program 1. 4112 + 8 + 0 + 0 (Display should show 20) or Power down then back up and press * and # within 1 minute (If exiting programming you can re-enter within 1 minute by pressing * and #) Exit

More information

C24 Installation and Activation

C24 Installation and Activation C24 Installation and Activation March 5, 2012 Agenda Brief overview of installation process for: o DSC Power Series 1864 + Gateway Live activation demo after this overview This overview assumes previous

More information

First Alert FA160C/162C Installer Notes M. Leuck

First Alert FA160C/162C Installer Notes M. Leuck First Alert FA160C/162C Installer Notes M. Leuck 1. Programming can only be done by 6139 Alpha keypads, standard 6128 keypad cannot be used to program zones 2. Enter programming: Master Code + 8 + 0 +

More information

DSC POWERSERIES NEO INTEGRATION. This application note will explain how to setup the DSC PowerSeries NEO integration on a KT-400 or a KT-1-M

DSC POWERSERIES NEO INTEGRATION. This application note will explain how to setup the DSC PowerSeries NEO integration on a KT-400 or a KT-1-M DN NUMBER HERE DSC POWERSERIES NEO INTEGRATION This application note will explain how to setup the DSC PowerSeries NEO integration on a KT-400 or a KT-1-M Minimum Requirements: EntraPass Special, Corporate,

More information

VISTA-128BP/VISTA-250BP Programming Form

VISTA-128BP/VISTA-250BP Programming Form VISTA-128BP/VISTA-250BP Programming Form Some fields are programmed for each partition (shown as shaded fields). If you are programming a multiple-partition system, see the Partition-Specific Fields section

More information

Ademco/Protection One 250P1-1 Programming Form

Ademco/Protection One 250P1-1 Programming Form Ademco/Protection One 250P1-1 Programming Form Local programming requires the use of a 2-line Alpha keypad connected to the keypad terminals on the control. Field Function Programmed Values [ ] = Default

More information

Programming Worksheets

Programming Worksheets Now classified in accordance with ANSI/SIA CP-01-2000 (SIA-FAR) Programming Worksheets PC1555 CP-01 PC1555 CP-01 version 3.2 DLS2002 and higher Page references below are to the accompanying Installation

More information

4140XMPT2 PROGRAMMING FORM

4140XMPT2 PROGRAMMING FORM 414XMPT2 PROGRAMMING FORM Some fields are programmed for each partition (shown as shaded fields). See the PARTITION-SPECIFIC section for programming these fields. Standard default (*97) values are shown

More information

USER GUIDE. for Android Version 1. alula.net ALULA 1

USER GUIDE. for Android Version 1. alula.net ALULA 1 USER GUIDE for Android Version 1 alula.net 1-888-88-ALULA 1 1. GETTING STARTED 3 2. DOWNLOAD THE ALULA APP 3 3. SIGN IN 3 4. LOCATIONS 4 5. MAIN DASHBOARD SCREEN 5 5.1. Application Menu 5 5.2. Feature

More information

NetworX Series. NX-507E RELAY EXPANDER NX-508E OUTPUT EXPANDER Installation and Startup

NetworX Series. NX-507E RELAY EXPANDER NX-508E OUTPUT EXPANDER Installation and Startup NetworX Series NX-0E RELAY EXPANDER NX-0E OUTPUT EXPANDER Installation and Startup NX-0E / NX-0E AUXILIARY MODULES TABLE OF CONTENTS I. GENERAL DESCRIPTION... II. WIRING INFORMATION... III. NX-0E TERMINAL

More information

NetworX Series. NX-507E RELAY EXPANDER NX-508E OUTPUT EXPANDER Installation and Startup

NetworX Series. NX-507E RELAY EXPANDER NX-508E OUTPUT EXPANDER Installation and Startup NetworX Series NX-0E RELAY EXPANDER NX-0E OUTPUT EXPANDER Installation and Startup NX-0E / NX-0E AUXILIARY MODULES TABLE OF CONTENTS I. GENERAL DESCRIPTION... II. WIRING INFORMATION... III. NX-0E TERMINAL

More information

Installer Notes 4110DL/XM, Vista 10, Vista-20, Via-30PSE

Installer Notes 4110DL/XM, Vista 10, Vista-20, Via-30PSE Installer Notes 4110DL/XM, Vista 10, Vista-20, Via-30PSE 1. Programming can only be done with a 6139 Alpha Keypad on Vista-10/20/30PSE models. 2. When entering programming for the first time during Installations

More information

*00 INSTALLER CODE Enter 4 digits, 0-9 [4140] *28 POWER UP IN PREVIOUS STATE [1=yes] 0=no; "1" for UL.

*00 INSTALLER CODE Enter 4 digits, 0-9 [4140] *28 POWER UP IN PREVIOUS STATE [1=yes] 0=no; 1 for UL. 4140XMPT2 PROGRAMMING FORM Some fields are programmed for each partition (shown as shaded fields). See the PARTITION-SPECIFIC section for programming these fields. Standard default (*97) values are shown

More information

Important Notice. Customer Information. 2 WisDom User Manual

Important Notice. Customer Information. 2 WisDom User Manual User Manual Important Notice This manual is delivered subject to the following conditions and restrictions: This manual contains proprietary information belonging to RISCO Group. The information is supplied

More information

2000 Series e/em Style Keypad Installation and Programming Manual

2000 Series e/em Style Keypad Installation and Programming Manual 2000 Series e/em Style Keypad Installation and Programming Manual Document Number: 6054022 Revision: 0 Date: 12/21/06 Table of Contents Table of Contents Section 1: Introduction... 6 1 Product Description...6

More information

Table of Contents. Phone number configuration...15 Alarm Phone numbers, 1, 2 & Divert phone numbers 1, 2 &

Table of Contents. Phone number configuration...15 Alarm Phone numbers, 1, 2 & Divert phone numbers 1, 2 & Table of Contents Introduction... 4 Warning... 5 Warranty... 5 Glossary of terms... 6 Legend... 7 Feature & Benefits... 8 1. Phone Line connection... 8 Phone Line connection, and network connection...9

More information

Digiplex EVO High Security and Access System What s New EVO192 V2.7

Digiplex EVO High Security and Access System What s New EVO192 V2.7 Digiplex EVO High Security and Access System What s New EVO192 V2.7 Overview New zone programming and additional zone/system/anti-mask options EN 50131 compliancy Now supports automatic label broadcast

More information

Programming Default Tables

Programming Default Tables Lynx Plus Control Defaults Lynx Plus Series Installation and Setup Guide *20 Installer code 4112 4112 4112 4112 *21 Quick arm enable 1 1 1 1 *22 Keypad backlight timeout 0 0 0 0 *23 Forced bypass 0 0 0

More information

THE OPERATOR INTRODUCTION 2 ACCESSING YOUR SYSTEM 2 FUNCTIONS OF THE "OPERATOR" 3 PROGRAMMING/CHANGING ACCESS CODES 12 ACTIVATING EMERGENCY ALARMS 13

THE OPERATOR INTRODUCTION 2 ACCESSING YOUR SYSTEM 2 FUNCTIONS OF THE OPERATOR 3 PROGRAMMING/CHANGING ACCESS CODES 12 ACTIVATING EMERGENCY ALARMS 13 THE OPERATOR INTRODUCTION 2 ACCESSING YOUR SYSTEM 2 FUNCTIONS OF THE "OPERATOR" 3 SECTION I. CHECKING SYSTEM STATUS 3 SECTION II. USING THE MENU 4 SECTION III. ARMING YOUR SECURITY SYSTEM 5 SECTION IV.

More information

Series. NX-8-EUR Control Panel. Installation manual

Series. NX-8-EUR Control Panel. Installation manual g GE Security NetworX TM Series NX-8-EUR Control Panel Installation manual NX-8-EUR Installation manual Page 2 23/12/04 CONTENTS CONTENTS...3 GENERAL INFORMATION...5 ORDERING INFORMATION...5 FEATURE DEFINITIONS...6

More information

FSK TX CELLULAR PLUS. Installation and Programming Guide. Tel:

FSK TX CELLULAR PLUS. Installation and Programming Guide. Tel: FSK TX CELLULAR PLUS Installation and Programming Guide Tel: 0861 105 962 www.fsk.co.za INTRODUCTION The FSK TX Cellular Plus (TXC+) is a highly featured GSM based unit which is used for the transmission

More information

DSC programming for the Alexor and Impassa

DSC programming for the Alexor and Impassa DSC programming for the Alexor and Impassa THERE IS NO REASON TO BE IN ANY SECTION OF YOUR SYSTEM UNLESS IT IS ON THIS QUICK START GUIDE. If you do not see it here, please question if you should be doing

More information

VISTA 12a / 48a TECHNICAL TRAINING. The Best in Security plus Everyday Convenience & Control

VISTA 12a / 48a TECHNICAL TRAINING. The Best in Security plus Everyday Convenience & Control VISTA 12a / 48a TECHNICAL TRAINING The Best in Security plus Everyday Convenience & Control Version #.007 7th June 2005 VISTA 12a / 48a Training Guide Index 1. Vista Family Features....... p. 3 2. Wiring

More information

Telephone and Reporting Setup in ElkRP

Telephone and Reporting Setup in ElkRP Telephone and Reporting Setup in ElkRP 1. To add a telephone, right click on Telephones under Folder items on the left side of the screen. Then select New Telephone. 2. On the New Telephone IDs screen,

More information

VISTA-20SEa. 3-Partition Security System. Programming Form. V20SEaPRV1 9/98

VISTA-20SEa. 3-Partition Security System. Programming Form.   V20SEaPRV1 9/98 VISTA-20SEa 3-Partition Security System New style cover to be used Programming Form V20SEaPRV1 9/98 Local programming requires the use of a 2-line Alpha keypad connected to Partition 1 keypad terminals

More information

SL2000E. Status Output. Electronic Code Lock. Features. Input. Exit Button Input. Introduction. Door Contact Input. Functional Description.

SL2000E. Status Output. Electronic Code Lock. Features. Input. Exit Button Input. Introduction. Door Contact Input. Functional Description. SL2000E Electronic Code Lock Features Door Relay output Status transistor output Aux transistor output Door Contact input Exit Button input INSTALLER code for programming MASTER code for arming/disarming

More information

XR500/XR100 Command Processor Review. a) Zone expanders c) Output expanders b) All of these d) Single point detectors

XR500/XR100 Command Processor Review. a) Zone expanders c) Output expanders b) All of these d) Single point detectors Name Answer Key Company Address City, State, Zip Instructor Date Your email User Name = Password = XR500/XR100 Command Processor Review 1. may be connected to the LX-Bus. a) Zone expanders c) Output expanders

More information

VISTA-50P VISTA-50PUL

VISTA-50P VISTA-50PUL VISTA-50P VISTA-50PUL PARTITIONED SECURITY SYSTEM with SCHEDULING Quick Start Step-by-Step Programming Procedure Single And Multiple Partition Programming Forms System Worksheets VISTA50P-PR 8/95 (See

More information

Wireless Expander Eclipse WL Installation and Programming Manual

Wireless Expander Eclipse WL Installation and Programming Manual Wireless Expander Eclipse WL Installation and Programming Manual 1. General Information Eclipse WL is a wireless expander module designed for building of hybrid systems with wired control panels Eclipse

More information

Document Name: User Manual for SC10MK, Modbus RTU to Modbus TCP Converter

Document Name: User Manual for SC10MK, Modbus RTU to Modbus TCP Converter Document Name: User Manual for SC10MK, Modbus RTU to Modbus TCP Converter Login for the first time, please use http://192.168.1.100 To key in user name and password is for identifying authorization. Default

More information

Installation Manual GENERAL DESCRIPTION...2 WIRING INFORMATION FOR NX-507 AND NX NX-507 TERMINAL DESCRIPTION...3 NX-507 DRAWING...

Installation Manual GENERAL DESCRIPTION...2 WIRING INFORMATION FOR NX-507 AND NX NX-507 TERMINAL DESCRIPTION...3 NX-507 DRAWING... NX-0 RELAY EXPANDER NX-0 OUTPUT EXPANDER Installation Manual GENERAL DESCRIPTION... WIRING INFORMATION FOR NX-0 AND NX-0... NX-0 TERMINAL DESCRIPTION... NX-0 DRAWING... NX-0 TERMINAL DESCRIPTION... NX-0

More information

INTRODUCTION 2 FEATURES. 2 SPECIFICATIONS. 2 PIN ASSIGNMENT 2 DB-9 DB-25 CONVERSION TABLE. 2 DRIVER INSTALLATION QUICK GUIDE.. 2

INTRODUCTION 2 FEATURES. 2 SPECIFICATIONS. 2 PIN ASSIGNMENT 2 DB-9 DB-25 CONVERSION TABLE. 2 DRIVER INSTALLATION QUICK GUIDE.. 2 USB to RS-232 Converter Part Number: USB-232-1 Communications made easy CONTENTS INTRODUCTION 2 FEATURES. 2 SPECIFICATIONS. 2 PIN ASSIGNMENT 2 DB-9 DB-25 CONVERSION TABLE. 2 DRIVER INSTALLATION QUICK GUIDE..

More information

INT-RS module - short technical description

INT-RS module - short technical description INT-RS module - short technical description The module INT-RS is dedicated to work with INTEGRA panels with firmware v1.06 2008-01-08 or above. It is an INTEGRA (LCD) bus to RS-232 converter. To properly

More information

RANGER 9000E DOWNLOADABLE CONTROL COMMUNICATOR INSTALLATION MANUAL

RANGER 9000E DOWNLOADABLE CONTROL COMMUNICATOR INSTALLATION MANUAL RANGER 9000E DOWNLOADABLE CONTROL COMMUNICATOR INSTALLATION MANUAL TABLE OF CONTENTS GENERAL DESCRIPTION... 2 STANDARD AND OPTIONAL PARTS LIST... 2 FEATURE DEFINITIONS... 3 TERMINAL DRAWING AND SPECIAL

More information

IDS X-Series User Manual E Issued June 2013

IDS X-Series User Manual E Issued June 2013 1 2 Contents 1. Introduction to the IDS X-Series Panels... 6 2. Before Operating Your Alarm System... 6 3. Understanding the Keypad LEDs... 7 3.1 Viewing Data on an LED Keypad... 11 3.2 Entering Data on

More information

Installation Manual IMPORTANT NOTE

Installation Manual IMPORTANT NOTE SEE BACK COVER FOR NEW FEATURES OF V2.1 Installation Manual IMPORTANT NOTE When using the PC5132 version 2.X Receiver, after programming or defaulting the module, confirm that the data in sections [82]

More information

Latest functions of the SmartLiving firmware version 5.10

Latest functions of the SmartLiving firmware version 5.10 Latest functions of the SmartLiving firmware version 5.10 This document contains a list of all the latest functions offered by the SmartLiving firmware version 5.10. If you require further details, please

More information

Commercial Fire and Burglary Partitioned Security System with Scheduling. Programming Guide. K0376PRV5 2/11 Rev. A

Commercial Fire and Burglary Partitioned Security System with Scheduling. Programming Guide. K0376PRV5 2/11 Rev. A VISTA-128FBP VISTA-250FBP Commercial Fire and Burglary Partitioned Security System with Scheduling Programming Guide K0376PRV5 2/11 Rev. A Table of Contents Programming Field Settings for UL864 Compliance

More information

NCOM SERIAL DEVICE SERVER 4XX SERIES USER S MANUAL

NCOM SERIAL DEVICE SERVER 4XX SERIES USER S MANUAL NCOM SERIAL DEVICE SERVER 4XX SERIES USER S MANUAL 2017-07-07 Edition Titan Electronics Inc. Web: www.titan.tw Contents 1. INTRODUCTION... 4 1.1 Key Features... 5 1.2 Specifications... 6 2. PANEL LAYOUT

More information

DECA PRINTER INTERFACE ACCESS CONTROL SYSTEMS INSTALLATION AND PROGRAMMING INSTRUCTIONS SYSTEM DESIGN

DECA PRINTER INTERFACE ACCESS CONTROL SYSTEMS INSTALLATION AND PROGRAMMING INSTRUCTIONS SYSTEM DESIGN DECA ACCESS CONTROL SYSTEMS PRINTER INTERFACE INSTALLATION AND PROGRAMMING INSTRUCTIONS ISSUE : 001/UK REF : PRINT.PPP DECA PRINTER INTERFACE - FRONT PANEL MAIN FEATURES PARALLEL PRINTER 25 PIN (D TYPE)

More information

Clipsal HomeMinder Home Automation System

Clipsal HomeMinder Home Automation System Clipsal HomeMinder Home Automation System Part A Release 1.0.0 4 June 2000 Copyright 2000 Clipsal Integrated Systems Preface Congratulations on your purchase of HomeMinder. You now own a powerful and

More information

OPC Server DSC. Installation and Configuration Manual. Installation and Configuration Manual. Revision History:

OPC Server DSC. Installation and Configuration Manual. Installation and Configuration Manual. Revision History: Installation and Configuration Manual OPC Server DSC Installation and Configuration Manual Revision History: Version Date Status 1.0 Nov 2015 Released Property of S4S - Innovative Software Solutions and

More information

KP2000E/EM Series Style Keypad

KP2000E/EM Series Style Keypad 23852973 KP2000E/EM Series Style Keypad Installation and Programming Instructions Models KP2000EXX and KP2000EMXX Specifications Parameter Voltage Requirements Keypad Current Requirements (Max) Relay Contact

More information

User Manual. PCKeypad Wireless Keypad

User Manual. PCKeypad Wireless Keypad User Manual PCKeypad Wireless Keypad Description The PCKeypad is a wireless keypad with a PentaCODE transmitter built-in. It works with all of Elsema s PCR series receivers. The installer has the option

More information

CP150B Vandal & Weather Resistant Keypad Security Systems

CP150B Vandal & Weather Resistant Keypad Security Systems Vandal & Weather Resistant Keypad Security Systems EN Security System CP150B - Vandal & Weather Resistant Keypad The CP150B keypad provides alarm and or access control functionality when used on selected

More information

Serial Interface Module

Serial Interface Module OnQ 363737-01 Serial Interface Module DESCRIPTION The 363737-01 Serial Interface can be used with Model 925 or Model 1050 controller. It allows the controller to be connected to a personal computer or

More information

Integriti User Manual. Elite / EliteX LCD Terminal Keypads

Integriti User Manual. Elite / EliteX LCD Terminal Keypads Integriti User Manual Elite / EliteX LCD Terminal Keypads INNER RANGE recommends that all INTEGRITI systems are installed & maintained by FACTORY CERTIFIED TECHNICIANS. For a list of Accredited Dealers

More information

Agility Installation Quick Start Guide 1

Agility Installation Quick Start Guide 1 Agility Installation Quick Start Guide Thank you for purchasing the Agility Flexible Wireless Solution from RISCO Group. This quick start guide will describe the main steps for installing and programming

More information

Grow your business by providing an intuitive home safety and comfort experience

Grow your business by providing an intuitive home safety and comfort experience Grow your business by providing an intuitive Self-contained, wireless security and interactive home automation system Fire detection s Video cameras Locks S.O.S./panic buttons Key features and benefits

More information

NX-2192E PINPOINT SYSTEM

NX-2192E PINPOINT SYSTEM NX-9E PINPOINT SYSTEM INSTALLATION MANUAL TABLE OF CONTENTS. GENERAL DESCRIPTION.... INSTALLATION.... DEVICE ADDRESS CONFIGURATION.... TERMINAL DESCRIPTIONS.... WIRING DIAGRAM.... MAXIMUM NUMBER OF DEVICES

More information

DAS 250L CONTROL COMMUNICATOR INSTALLATION MANUAL

DAS 250L CONTROL COMMUNICATOR INSTALLATION MANUAL DAS 250L CONTROL COMMUNICATOR INSTALLATION MANUAL TABLE OF CONTENTS 1. GENERAL DESCRIPTION... P.2 2. STANDARD AND OPTIONAL PARTS LIST..... P.2 3. FEATURE DEFINITIONS... P.3 4. TERMINAL DRAWING AND SPECIAL

More information

MCM Electronics MCM Electronics MCM Electronics. The Icon Series. Installation and Programming Information. Icon 8 Version 5.0

MCM Electronics MCM Electronics MCM Electronics. The Icon Series. Installation and Programming Information. Icon 8 Version 5.0 MCM Electronics MCM Electronics MCM Electronics The Icon Series Installation and Programming Information Icon 8 Version 5.0 TABLE OF CONTENTS 1. 2. 3. Panel Hardware Page 2 Physical Layout. Inputs. Outputs.

More information

Emergency Dialer DIAL-ALERT MODEL: AD-105.

Emergency Dialer DIAL-ALERT MODEL: AD-105. www.skylinkhome.com Emergency Dialer TM DIAL-ALERT MODEL: AD-105 If you would like to order Skylink s products or have difficulty getting them to work or download information and user manual, please :

More information

Safecom Solution-16 Quick Reference Guide ISSUE 1.10

Safecom Solution-16 Quick Reference Guide ISSUE 1.10 Safecom Solution-16 Quick Reference Guide ISSUE 1.10 2 Solution-16 Safecom Quick Reference Guide Safecom Solution-16 Quick Reference Guide Copyright 1998 by, SYDNEY, AUSTRALIA Document Part Number MA8016Q

More information

Document Name: User Manual for SC10EK4 Serial to Ethernet Converter with 4 TCP Sockets. Index

Document Name: User Manual for SC10EK4 Serial to Ethernet Converter with 4 TCP Sockets. Index Document Name: User Manual for SC10EK4 Serial to Ethernet Converter with 4 TCP Sockets. Index Technical Specifications 1 Installation Procedure 1 LED Indications 2 Configuration Procedure Configuration

More information

ADEMCO LYNXR-ENSIA Security System

ADEMCO LYNXR-ENSIA Security System UL K5966-2 9/06 Rev. A ADEMCO LYNXR-ENSIA Security System Quick Start Guide LYNXR-ENSIA is not intended for UL985 Household Fire applications unless a 24-hour backup battery (P/N LYNXRCHKIT-HC) is installed.

More information

UC-2000 Installation Manual Unicorn Computers Technology Limited

UC-2000 Installation Manual Unicorn Computers Technology Limited UC2000 Installation Manual Copyright 2003. All rights reserved. Table of Contents Specifications 2 Enclosure for the UC2000 Controller 3 Unicorn Access Control System Configuration 4 UC2000 Controller

More information

Model Number(s): D7000, D9000 Series Panels, D7000/9000V2 Panels

Model Number(s): D7000, D9000 Series Panels, D7000/9000V2 Panels Manufacturer: Bosch / Radionics Integration Note Model Number(s): D7000, D9000 Series Panels, D7000/9000V2 Panels Core Module Version: Comments: Tested Firmware Revisions: 6.80, 7.07 Document Revision

More information

1HWZRU;1;( Table of Contents. General Description...2. Ordering Information...2. Feature Definitions...3. Programming the LED Keypads...

1HWZRU;1;( Table of Contents. General Description...2. Ordering Information...2. Feature Definitions...3. Programming the LED Keypads... HWZRU;;( Control/Communicator Installation Manual Table of Contents General Description... Ordering Information... Feature Definitions... Programming the LED Keypads... Programming the NX-E...9 Types of

More information

Solution 16 plus. User Guide Security System

Solution 16 plus. User Guide Security System Solution 16 plus EN Security System Copyright Notice Unless otherwise indicated, this publication is the copyright of Bosch Security Systems Pty Ltd ( Bosch ). All rights are reserved.you may download

More information

485DRCI. Industrial RS-232 to RS-422/485 Converter B&B ELECTRONICS PRODUCT INFORMATION. Specifications Serial Technology

485DRCI. Industrial RS-232 to RS-422/485 Converter B&B ELECTRONICS PRODUCT INFORMATION. Specifications Serial Technology 485DRCI RS-232 RS-485 2-Wrie RS-422/485 4-Wire RS-232 CON. RS-422/485 CON. Data Rate Isolation Surge Protection Industrial Bus Source Input Voltage Power Consumption Connector p/n 7207r3 485DRCI-4108ds

More information

DNA100 DIGITAL NETWORK ADAPTOR

DNA100 DIGITAL NETWORK ADAPTOR DNA100 DIGITAL NETWORK ADAPTOR Table of Contents DNA100 DIGITAL NETWORK ADAPTER...1 INTRODUCTION...1 INSTALLATION...2 Network connections...2 RS232 signals...3 RS422 signals...4 Setting Baud Rate / Selecting

More information

D1260/D1260B. Owner's Manual. Keypad

D1260/D1260B. Owner's Manual. Keypad D1260/D1260B EN Owner's Manual Keypad D1260/D1260B Owner's Manual This system includes a telephone line seizure feature. The system may be programmed to communicate with a central monitoring station to

More information

EX & EX-45362IS 2S RS232/422/485 3-in-1 Serial PCIe Card

EX & EX-45362IS 2S RS232/422/485 3-in-1 Serial PCIe Card EX-45362 & EX-45362IS 2S RS232/422/485 3-in-1 Serial PCIe Card Congratulation on your purchasing this high performance 2-Port RS232/422/485 3-in-1 Serial PCIe Host Adapter. The adapter is high speed PCIe

More information

NCOM SERIAL DEVICE SERVER 1XX SERIES USER S MANUAL

NCOM SERIAL DEVICE SERVER 1XX SERIES USER S MANUAL NCOM SERIAL DEVICE SERVER 1XX SERIES USER S MANUAL 2017-07-07 Edition Titan Electronics Inc. Web: www.titan.tw Contents 1. INTRODUCTION... 4 1.1 Key Features... 5 1.2 Specifications... 6 2. PANEL LAYOUT

More information

3 6HFXULW\6\VWHP 3URJUDPPLQJ)RUP K4332 9/99 BYPASS NOT READY ARMED READY 4 MAX 5 TEST 6 BYPASS 7INSTANT 8 CODE 9CHIME READY ARMED

3 6HFXULW\6\VWHP 3URJUDPPLQJ)RUP K4332 9/99 BYPASS NOT READY ARMED READY 4 MAX 5 TEST 6 BYPASS 7INSTANT 8 CODE 9CHIME READY ARMED 3 6HFXULW\6\VWHP 3URJUDPPLQJ)RUP ARMED READY 1 OFF 2 AWAY 3 STAY 4 MAX 5 TEST 6 BYPASS 7INSTANT 8 CODE 9CHIME READY 0 # * NIGHT NO AC AWAY PHONE TEST BYPASS NOT READY ALARM STAY CHIME BAT FIRE CHECK INSTANT

More information

DAS LCD ALPHA NUMERIC CODEPAD

DAS LCD ALPHA NUMERIC CODEPAD DAS LCD ALPHA NUMERIC CODEPAD Table of Contents 1. LCD Codepad Diagram... 2 2. Introduction... 3 3. Understanding Your LCD Codepad... 4-7 4. Changing User Codes... 8-9 5. Special Function Keys..... 10

More information

PROGRAMMING HELP GUIDE

PROGRAMMING HELP GUIDE DIGIPLEX EVO48-192 PROGRAMMING HELP GUIDE Entering Programming Mode 1) Press and hold the [0] key 2) Enter your [Installer Code] (default-000000) 3) Enter 4-digit [section] you wish to program 4) Enter

More information

COMMONLY USED 5.AFETY SENSORS. Photocell (Reflector) CLOSING Direction. Photocell (Reflector) CLOSING Direction OA4RO E.3IC-RIOIC4 EA4X IRB-RET

COMMONLY USED 5.AFETY SENSORS. Photocell (Reflector) CLOSING Direction. Photocell (Reflector) CLOSING Direction OA4RO E.3IC-RIOIC4 EA4X IRB-RET MLY USED 5.AFETY SENSORS 0----- OA4RO E.IC-RIOIC4 Direction. Set switch to "LIGHT ". Wire V power to photocell. Wire to photocell N0 Wire to photocell C- 4. Align photocell to reflector 5. Adjust sensitivity

More information

Installation Quick Start Guide

Installation Quick Start Guide Installation Quick Start Guide For detailed information please refer to the full Agility 3 Installer Manual provided on our website: www.riscogroup.com Table of Contents 1. INSTALL THE MAIN UNIT... 3 2.

More information

INT-TSI Brief User Manual

INT-TSI Brief User Manual int-tsi_u_en 03/15 Keypad INT-TSI Brief User Manual SATEL sp. z o.o. ul. Budowlanych 66 80-298 Gdańsk POLAND tel. 58 320 94 00 info@satel.pl www.satel.eu Firmware version 1.04 WARNINGS Please read this

More information

USER MANUAL HPS-120. About this product: Your Communications Solutions Provider

USER MANUAL HPS-120. About this product:  Your Communications Solutions Provider Your Communications Solutions Provider www.industrial-grade-modem.com USER MANUAL HPS-120 About this product: Industrial Grade Modems works to provide you with reliable, easy to use, wireless serial communications

More information

pro ACTpro IOM INPUT/OUTPUT MODULE Installation and Configuration Instructions for the ACTpro IOM Input/Output Module ACT Product Code: ACTPRO IOM

pro ACTpro IOM INPUT/OUTPUT MODULE Installation and Configuration Instructions for the ACTpro IOM Input/Output Module ACT Product Code: ACTPRO IOM pro ACTpro IOM INPUT/OUTPUT MODULE Installation and Configuration Instructions for the ACTpro IOM Input/Output Module ACT Product Code: ACTPRO IOM pro CONTENTS Technical Specification... 4 Product Overview...

More information

RS232/RS485/RS422 to TCP/IP Converter ITEM NO.: RS007

RS232/RS485/RS422 to TCP/IP Converter ITEM NO.: RS007 RS232/RS485/RS422 to TCP/IP Converter ITEM NO.: RS007 RS007 is a universal data converter which support serial RS232, RS422 and RS485 to the TCP / IP intelligent communication converter, it offers RS485/RS422

More information

Colour Graphic Terminal User Manual. Rev 3.1

Colour Graphic Terminal User Manual. Rev 3.1 Integriti. Colour Graphic Terminal User Manual. 1 Colour Graphic Terminal User Manual. Rev 3.1 2013-2014. Inner Range Pty. Ltd. Part Number: 636000U 2 Integriti. Revision 3.1 June 2014. SYSTEM DETAILS

More information

Technical documentation

Technical documentation Document type: Technical documentation Scope: Galaxy Integration Product: IFTER EQU Prepared: 2015 1 Contents 1.0 IFTER EQU Visualization software 4 2.0 Honeywell Galaxy control units visualization 6 3.0

More information

ICD105A 1008 page 1/ r001 ICD105A. Industrial RS-232 to RS-422/485 Converter

ICD105A 1008 page 1/ r001 ICD105A. Industrial RS-232 to RS-422/485 Converter ICD105A 1008 page 1/5 7319 r001 ICD105A Industrial RS-232 to RS-422/485 Converter Data Rates up to 115.2 Kbps 10 48 VDC Input Power Range Wide Operating Temperature 3-Way 2000V Optical Isolation Modbus

More information