Home Automation, Inc. Omni-Link. Serial Protocol Description

Size: px
Start display at page:

Download "Home Automation, Inc. Omni-Link. Serial Protocol Description"

Transcription

1 Home Automation, Inc. Omni-Link Serial Protocol Description This document contains the intellectual property of Home Automation, Inc. (HAI). HAI authorizes the use of this information for the sole purpose of developing software and systems to work with HAI's Serial Interface. The specifications in this document are subject to change without notice. Document Number 10P17 Rev H September 2004

2

3 GENERAL This document defines the Omni-Link communications protocol. This protocol allows an external device to communicate with a Home Automation, Inc. automation controller through an RS-232 or RS-485 serial interface. Omni-Link allows the external device to monitor the status of the HAI controller and to control its operation. The current status of the security system and of each security zone, control unit, temperature sensor, thermostat, and displayed text messages may be obtained. Commands may be sent to control security, units, temperature setpoints, and thermostat operation. Additionally, the controller display names may be uploaded from and downloaded to the HAI controller and the event log may be uploaded from the HAI controller. ELECTRICAL INTERFACE The external device connects to the HAI controller in one of the following manners: a) Through the HAI Model 10A17-1 Serial Interface connected to an OmniLT, Omni, Omni II, OmniPro, or OmniPro II controller. This interface provides both an RS-232 interface and an RS-485 interface. Only one of these interfaces may be active at a time. The RS-232 interface is provided through a standard DB-9M connector. The serial interface may be connected to a personal computer using a readily available "null modem" or data transfer cable. The RS-485 interface is provided through a two-position terminal block. b) Through the serial interface built onto the OmniLT, Omni II, or OmniPro II controller. The serial interface supports both RS-232 and RS-485 connections. The RS-232 interface is provided through a modular connector on the controller. To access the RS-232 interface, use the HAI Model 21A05-2 Serial Cable Kit. Plug one end of the cable into the modular connector on the controller. Plug the other end into the Model 21A05-1 Serial Cable Adapter (modular to DB-9 RS- 232), which connects the controller's serial port to the computer's DB-9 RS-232 port. The RS-485 interface is provided through the same modular connector. To select RS-485, move the interface jumper (below the modular connector) from the "232" to the "485" position. Using a standard 4 position phone cable, use the Yellow and Green wires for communications. The RS-232 interface is configured as DTE (data terminal equipment). This is the same configuration as provided on a typical personal computer. The RS-485 interface may be connected to the external device up to 1000 feet away when using standard twisted pair cabling. Since the RS-485 interface is a half-duplex bus, the external device must be capable of turning its RS-485 driver on before transmitting to the controller and turning it off after it has completed its transmission to the controller. Data is transmitted asynchronously using standard nonreturn-to-zero (NRZ) format (one start bit, eight data bits, and a single stop bit) at up to 9600 baud. Page 1

4 MESSAGE TIMING The Omni-Link protocol is a master/slave protocol. The external device is the master. The HAI controller is the slave. The master initiates all communications. The slave can only communicate when requested by the master. All communication takes place half-duplex. That is, the master will first transmit to the slave, then the slave may reply to the master. Data transfer between the external device and the HAI controller takes place though a series of message exchanges. The external device sends a message to the controller requesting the controller to take some action or to provide some information. The controller then replies with the requested information or an acknowledgement that it has performed the desired action. When using the RS-485 interface, the master must turn on its RS-485 driver, send its message, then disable its RS- 485 driver after the last character of the message has been transmitted. The master's driver must be turned off and the master must be ready to receive the slave's reply within 1 ms after the last character has been transmitted. The master must allow at least 1 second for the slave to begin replying with its message. It must then allow at least 50 ms for each subsequent character to be sent. The master must wait at least 1 ms after receiving the last character from the slave before turning on its driver again to initiate a new message. MESSAGE FORMAT The Omni-Link protocol is a binary protocol. That is, one byte of data is sent as a single character whose hex value is 0x00 through 0xFF. Messages in the Omni-Link protocol can use either the addressable format or the non-addressable format. Any HAI controller that supports the Omni-Link protocol can use the non-addressable format. The nonaddressable format allows only one master device and one HAI controller on the communication link. Some HAI controllers support the addressable format in addition to the non-addressable format. These controllers can be used in the non-addressable mode as described in the preceding paragraph. They can also be used in the addressable mode, so that multiple HAI controllers can be multi-dropped on the same RS-485 communication link. In this mode, each controller is assigned an address that is unique to the communication link. Every controller on the shared communication link receives all messages transmitted by the master device. The controller ignores any message whose address value does not match it s own address. The HAI controller will always recognize messages in the non-addressable format, even if it has been configured with an address for use with the addressable mode. Of course, messages in the non-addressable format should never be transmitted on a multi-dropped communication link, since all of the controllers will react to the message and the replies will collide. The general format of a non-addressable message is as follows: Field Length Comments Start character 1 byte Value is always 0x5A Message length 1 byte Value is the total number of bytes in the message type and data fields 1 byte Value indicates the specific function of the message Data variable Zero or more bytes, depending on the specific message type 1 byte Least-significant-byte of 16-bit CRC 1 byte Most-significant-byte of 16-bit CRC Page 2

5 The general format of an addressable message is as follows: Field Length Comments Start character 1 byte Value is always 0x41 Address 1 byte Must be within range of 0x01 to 0xFE, inclusive Message length 1 byte Value is the total number of bytes in the message type and data fields 1 byte Value indicates the specific function of the message Data none Zero or more bytes, depending on the specific message type 1 byte Least-significant-byte of 16-bit CRC 1 byte Most-significant-byte of 16-bit CRC The CRC-16 error detection algorithm is used to provide a robust error detection capability in the Omni-Link protocol. The CRC1 and CRC2 error check bytes are the 16-bit CRC-16 polynomial remainder, sent leastsignificant-bit first. The CRC value is calculated using all bytes of the message, except the start character and the CRC fields. Sample routines to calculate the CRC-16 error check bytes are provided in Appendix A. MESSAGE TYPES Different message types are provided in the Omni-Link protocol to perform different actions. These message types can be divided into several groups: Acknowledgement messages Access control messages Status request messages Status report messages System event messages Command messages Name messages Event log messages Validate security code messages Please note that in the following sections describing the various message types, only the non-addressable message format is shown. The corresponding message in the addressable format would have the following differences: Start character would be 0x41 Address byte would be inserted immediately following start character CRC value would be different, since address byte must be included in CRC-16 calculation Page 3

6 ACKNOWLEDGEMENT MESSAGES Acknowledgement messages are sent to acknowledge the receipt of another message. An ACKNOWLEDGE message is sent in response to another message to indicate that the message was received correctly and processed. A NEGATIVE ACKNOWLEDGE message is sent in response to another message to indicate that the message was received correctly, but was not processed due to an error in the message format or to an inability to successfully perform the requested action. ACKNOWLEDGE Start character Message length Data 0x5A 0x01 0x05 none 0xC1 0x93 NEGATIVE ACKNOWLEDGE Start character Message length Data 0x5A 0x01 0x06 none 0x81 0x92 ACCESS CONTROL MESSAGES Access control messages are used to insure that only authorized users may access the HAI controller through the Omni-Link interface. The external device must first "log in" using an approved security code before access is allowed to the HAI controller. It may then "log out" when the access has been completed. Once logged in, the external device has full access to the controller. Therefore, only the PC access code or a master code may be used to access the controller through Omni-Link. The external device "logs in" by sending a LOGIN message containing an approved security code. The controller will reply with an ACKNOWLEDGE message if the login was successful. Prior to login, the controller will send NEGATIVE ACKNOWLEDGE messages in reply to all other messages. The ACKNOWLEDGE message can be used to determine if the external device is currently logged in. The controller will reply to an ACKNOWLEDGE message with another ACKNOWLEDGE message if the external device is logged in. The controller will reply with a NEGATIVE ACKNOWLEDGE message if the external device is not logged in. The controller will disallow any further login attempts for one hour if three consecutive unsuccessful login attempts are made. This prevents an intruder from randomly trying all possible security codes to gain access to the controller. Page 4

7 The external device "logs out" by sending a LOGOUT message. This allows the Omni-Link interface to be secured when the external device has completed access to the controller. The system will automatically log the external device out if: No messages are sent for three minutes Carrier detect is lost when using a modem The controller is reset LOGIN Start character Message length Data 2 Data 3 Data 4 0x5A 0x05 0x20 first digit of code second digit of code third digit of code fourth digit of code Each of the digits of the security code must be sent as the numeric value of the digit, 0x00 through 0x09. LOGOUT Start character Message length Data 0x5A 0x01 0x21 none 0xC1 0x88 STATUS REQUEST MESSAGES Status request messages are sent by the external device to the HAI controller to request that the controller report certain status information. The following information can be requested: System information System status Zone status Unit status Auxiliary status Thermostat status Message Status Page 5

8 REQUEST SYSTEM INFORMATION This message requests the HAI controller to report its model number, software version, and local phone number. Start character Message length Data Expected reply 0x5A 0x01 0x11 none 0xC1 0x9C SYSTEM INFORMATION REQUEST SYSTEM STATUS This message requests the HAI controller to report its time, date, calculated time of sunrise and sunset, battery reading, current security mode for each area, and the status of each expansion enclosure. The status for each expansion enclosure includes the AC power status, battery status, communications status, and battery reading. Start character Message length Data Expected reply 0x5A 0x01 0x13 none 0x40 0x5D SYSTEM STATUS REQUEST ZONE STATUS This message requests the HAI controller to report the status of a group of security zones. The status reported for each zone includes the current condition of the zone (secure, not ready, or trouble), the latched alarm status for the zone, whether the zone is armed, whether the zone has had any trouble, and the current analog loop reading for the zone. Start character Message length Data 2 Expected reply 0x5A 0x03 0x15 starting zone ending zone ZONE STATUS Page 6

9 REQUEST UNIT STATUS This message requests the HAI controller to report the status of a group of units. The status reported for each unit includes the unit's current condition and any time remaining on a timed command. If both the starting and ending unit numbers are less than 256, the request is sent using one byte for each unit number: Start character Message length Data 2 Expected reply 0x5A 0x03 0x17 starting unit ending unit UNIT STATUS If either of the unit numbers is 256 or greater, the request is sent using two bytes for each unit number: Start character Message length Data 2 Data 3 Data 4 Expected reply 0x5A 0x05 0x17 starting unit (MSB) starting unit (LSB) ending unit (MSB) ending unit (LSB) UNIT STATUS REQUEST AUXILIARY STATUS This message requests the HAI controller to report the status of a group of temperature sensors. The status reported for each temperature sensor includes: the output relay status for Programmable Energy Saver Modules (PESMs), the current temperature reading, and the low and high temperature setpoints. Start character Message length Data 2 Expected reply 0x5A 0x03 0x19 starting temperature sensor ending temperature sensor AUXILIARY STATUS Page 7

10 REQUEST THERMOSTAT STATUS This message requests the HAI controller to report the status of a group of thermostats. The status reported for each thermostat includes whether the thermostat is communicating with the controller, whether a freeze condition has been detected by the thermostat, the current temperature, the heat and cool setpoints, the system mode, the fan mode, and whether the thermostat has been placed in hold mode. Start character Message length Data 2 Expected reply 0x5A 0x03 0x1E starting thermostat ending thermostat THERMOSTAT STATUS REQUEST MESSAGE STATUS This message requests the HAI controller to report the status of displayed text messages. The status reported for each message includes which messages are currently being displayed and what displayed messages have not been acknowledged. The status reported also indicates if there is a memo message that has not yet been played. Start character Message length Data 0x5A 0x01 0x24 none 0x01 0x8B STATUS REPORT MESSAGES Status report messages are sent in response to each of the status request messages. The following information is reported: System information System status Zone status Unit status Auxiliary status Thermostat status Message status Page 8

11 SYSTEM INFORMATION This message is sent by the HAI controller in reply to a REQUEST SYSTEM INFORMATION message. The controller reports its model number, software version, and local phone number. Start character Message length Data 2 Data 3 Data 4 Data x5A 0x1E 0x12 model number major version minor version revision local phone number The model number identifies the controller model, such as OmniLT, Omni, Omni II, OmniPro, or OmniPro II. The following model numbers are defined: NUMBER MODEL 9 HAI OmniLT 2 HAI Omni 15 HAI Omni II 4 HAI OmniPro 16 HAI OmniPro II The major version, minor version, and revision identify the controller software version. For example, if the software version is 1.4G, the major version would be 0x01, the minor version would be 0x04, and the revision would be 0x07. Revision 0x00 specifies no revision letter, revision 0x01 specifies revision A, and so on. If the revision is a 2's complement negative number, such as 0xFF, it specifies a prototype revision such as X1 or X2. Revision 0xFF specifies revision X1, revision 0xFE specifies revision X2, and so on. The local phone number corresponds to the "MY PHONE NUMBER" setting in the controller. It is an ASCII text string up to 24 characters long, terminated with a trailing 0x00. SYSTEM STATUS This message is sent by the HAI controller in reply to a REQUEST SYSTEM STATUS message. The controller reports its time, date, calculated time of sunrise and sunset, battery reading, current security mode for each area, and the status of each expansion enclosure. The status for each expansion enclosure includes the AC power status, battery status, communications status, and battery reading. Page 9

12 For HAI OmniLT, the reply is as follows: Start character 0x5A Message length 0x10 0x14 time/date valid flag Data 2 year (0-99) Data 3 month (1-12) Data 4 day (1-31) Data 5 day of week (1-7) Data 6 hour (0-23) Data 7 minute (0-59) Data 8 second (0-59) Data 9 daylight savings time flag 0 calculated sunrise hour (0-23) 1 calculated sunrise minute (0-59) 2 calculated sunset hour (0-23) 3 calculated sunset minute (0-59) 4 battery reading 5 security mode For HAI Omni and HAI Omni II, the reply is as follows: Start character 0x5A Message length 0x11 0x14 time/date valid flag Data 2 year (0-99) Data 3 month (1-12) Data 4 day (1-31) Data 5 day of week (1-7) Data 6 hour (0-23) Data 7 minute (0-59) Data 8 second (0-59) Data 9 daylight savings time flag 0 calculated sunrise hour (0-23) 1 calculated sunrise minute (0-59) 2 calculated sunset hour (0-23) 3 calculated sunset minute (0-59) 4 battery reading 5 area 1 security mode 6 area 2 security mode Page 10

13 For HAI OmniPro, the reply is as follows: Start character 0x5A Message length 0x1F 0x14 time/date valid flag Data 2 year (0-99) Data 3 month (1-12) Data 4 day (1-31) Data 5 day of week (1-7) Data 6 hour (0-23) Data 7 minute (0-59) Data 8 second (0-59) Data 9 daylight savings time flag 0 calculated sunrise hour (0-23) 1 calculated sunrise minute (0-59) 2 calculated sunset hour (0-23) 3 calculated sunset minute (0-59) 4 battery reading 5 area 1 security mode 6 area 2 security mode 7 area 3 security mode 8 area 4 security mode 9 area 5 security mode Data 20 area 6 security mode Data 21 area 7 security mode Data 22 area 8 security mode Data 23 expansion enclosure 1 status Data 24 expansion enclosure 1 battery reading Data 25 expansion enclosure 2 status Data 26 expansion enclosure 2 battery reading Data 27 expansion enclosure 3 status Data 28 expansion enclosure 3 battery reading Data 29 expansion enclosure 4 status Data 30 expansion enclosure 4 battery reading Page 11

14 For HAI OmniPro II, the reply is as follows: Start character 0x5A Message length 0x27 0x14 time/date valid flag Data 2 year (0-99) Data 3 month (1-12) Data 4 day (1-31) Data 5 day of week (1-7) Data 6 hour (0-23) Data 7 minute (0-59) Data 8 second (0-59) Data 9 daylight savings time flag 0 calculated sunrise hour (0-23) 1 calculated sunrise minute (0-59) 2 calculated sunset hour (0-23) 3 calculated sunset minute (0-59) 4 battery reading 5 area 1 security mode 6 area 2 security mode 7 area 3 security mode 8 area 4 security mode 9 area 5 security mode Data 20 area 6 security mode Data 21 area 7 security mode Data 22 area 8 security mode Data 23 expansion enclosure 1 status Data 24 expansion enclosure 1 battery reading Data 25 expansion enclosure 2 status Data 26 expansion enclosure 2 battery reading Data 27 expansion enclosure 3 status Data 28 expansion enclosure 3 battery reading Data 29 expansion enclosure 4 status Data 30 expansion enclosure 4 battery reading Data 31 expansion enclosure 5 status Data 32 expansion enclosure 5 battery reading Data 33 expansion enclosure 6 status Data 34 expansion enclosure 6 battery reading Data 35 expansion enclosure 7 status Data 36 expansion enclosure 7 battery reading Data 37 expansion enclosure 8 status Data 38 expansion enclosure 8 battery reading The time/date valid flag is zero if the time and date have not been set in the controller. The daylight savings time flag is nonzero if daylight savings time is in effect. The day of the week is 1 for Monday through 7 for Sunday. Page 12

15 The security mode for an area is as follows: 0 Off 1 Day 2 Night 3 Away 4 Vacation 5 Day instant 6 Night delayed The bits in the expansion enclosure status bytes are shown below. The corresponding bit is set if the condition is true. Bit 0 Bit 1 Bit 7 AC power off Battery low Communications failure ZONE STATUS This message is sent by the HAI controller in reply to a REQUEST ZONE STATUS message. The controller reports the status of a group of security zones. The status reported for each zone includes the current condition of the zone (secure, not ready, or trouble), the latched alarm status for the zone, whether the zone is armed, whether the zone has had any trouble, and the current analog loop reading for the zone. Start character 0x5A Message length (2 * number of zones) + 1 0x16 zone status for first zone Data 2 analog loop reading for first zone Data 3 zone status for second zone Data 4 analog loop reading for second zone... Data n-1 zone status for last zone Data n analog loop reading for last zone The zone status for a zone is packed into a single byte. Bits 0 and 1 indicate the current condition of the zone: Bit 1 Bit 0 Current Condition 0 0 Secure 0 1 Not ready 1 0 Trouble Bits 2 and 3 indicate the latched alarm status for the zone: Bit 3 Bit 2 Latched Alarm Status 0 0 Secure 0 1 Tripped 1 0 Reset, but previously tripped Page 13

16 Bits 4 and 5 indicate the arming status for the zone: Bit 5 Bit 4 Arming Status 0 0 Disarmed 0 1 Armed 1 0 Bypassed by user 1 1 Bypassed by system Bit 6 is set if a trouble condition has occurred that has not been acknowledged by the user. The current condition of the zone will indicate whether the zone currently has a trouble condition. If the zone does not currently have a trouble condition, but bit 6 is set, it indicates that the zone has previously had a trouble condition that has not yet been acknowledged. Status can be requested for the following zones in HAI OmniLT: Zone 1-25 Zone 26 Zone 27 Zone 28 Zone 29 Zone 30 Zone 31 Zone 32 Zone 33 Zone 34 Zone 35 Zone 36 Security zone inputs Freeze alarm Fire emergency Police emergency Auxiliary emergency Duress alarm Battery low trouble AC power failure trouble Phone line dead trouble Digital communicator trouble Fire tamper trouble Fuse trouble Status can be requested for the following zones in HAI Omni: Zone 1-32 Zone 33 Zone 34 Zone 35 Zone 36 Zone 37 Zone 38 Zone 39 Zone 40 Zone 41 Zone 42 Zone 43 Zone 44 Zone 45 Security zone inputs Freeze alarm Area 1 fire emergency Area 2 fire emergency Area 1 police emergency Area 2 police emergency Area 1 auxiliary emergency Area 2 auxiliary emergency Area 1 duress alarm Area 2 duress alarm Battery low trouble AC power failure trouble Phone line dead trouble Digital communicator trouble Status can be requested for the following zones in HAI Omni II: Zone 1-48 Zone 49 Zone 50 Zone 51 Zone 52 Zone 53 Security zone inputs Freeze alarm Area 1 fire emergency Area 2 fire emergency Area 1 police emergency Area 2 police emergency Page 14

17 Zone 54 Zone 55 Zone 56 Zone 57 Zone 58 Zone 59 Zone 60 Zone 61 Zone 62 Zone 63 Area 1 auxiliary emergency Area 2 auxiliary emergency Area 1 duress alarm Area 2 duress alarm Battery low trouble AC power failure trouble Phone line dead trouble Digital communicator trouble Fire tamper trouble Fuse trouble Status can be requested for the following zones in HAI OmniPro: Zone 1-96 Zone 97 Zone 98 Zone 99 Zone 100 Zone 101 Zone 102 Zone 103 Zone 104 Zone 105 Zone 106 Zone 107 Zone 108 Zone 109 Zone 110 Zone 111 Zone 112 Zone 113 Zone 114 Zone 115 Zone 116 Zone 117 Zone 118 Zone 119 Zone 120 Zone 121 Zone 122 Zone 123 Zone 124 Zone 125 Zone 126 Zone 127 Zone 128 Zone 129 Zone 130 Zone 131 Zone 132 Zone 133 Security zone inputs Freeze alarm Area 1 fire emergency Area 2 fire emergency Area 3 fire emergency Area 4 fire emergency Area 5 fire emergency Area 6 fire emergency Area 7 fire emergency Area 8 fire emergency Area 1 police emergency Area 2 police emergency Area 3 police emergency Area 4 police emergency Area 5 police emergency Area 6 police emergency Area 7 police emergency Area 8 police emergency Area 1 auxiliary emergency Area 2 auxiliary emergency Area 3 auxiliary emergency Area 4 auxiliary emergency Area 5 auxiliary emergency Area 6 auxiliary emergency Area 7 auxiliary emergency Area 8 auxiliary emergency Area 1 duress alarm Area 2 duress alarm Area 3 duress alarm Area 4 duress alarm Area 5 duress alarm Area 6 duress alarm Area 7 duress alarm Area 8 duress alarm Battery low trouble AC power failure trouble Phone line dead trouble Digital communicator trouble Page 15

18 Status can be requested for the following zones in HAI OmniPro II: Zone Zone 177 Zone 178 Zone 179 Zone 180 Zone 181 Zone 182 Zone 183 Zone 184 Zone 185 Zone 186 Zone 187 Zone 188 Zone 189 Zone 190 Zone 191 Zone 192 Zone 193 Zone 194 Zone 195 Zone 196 Zone 197 Zone 198 Zone 199 Zone 200 Zone 201 Zone 202 Zone 203 Zone 204 Zone 205 Zone 206 Zone 227 Zone 208 Zone 209 Zone 210 Zone 211 Zone 212 Zone 213 Zone 214 Zone 215 Security zone inputs Freeze alarm Area 1 fire emergency Area 2 fire emergency Area 3 fire emergency Area 4 fire emergency Area 5 fire emergency Area 6 fire emergency Area 7 fire emergency Area 8 fire emergency Area 1 police emergency Area 2 police emergency Area 3 police emergency Area 4 police emergency Area 5 police emergency Area 6 police emergency Area 7 police emergency Area 8 police emergency Area 1 auxiliary emergency Area 2 auxiliary emergency Area 3 auxiliary emergency Area 4 auxiliary emergency Area 5 auxiliary emergency Area 6 auxiliary emergency Area 7 auxiliary emergency Area 8 auxiliary emergency Area 1 duress alarm Area 2 duress alarm Area 3 duress alarm Area 4 duress alarm Area 5 duress alarm Area 6 duress alarm Area 7 duress alarm Area 8 duress alarm Battery low trouble AC power failure trouble Phone line dead trouble Digital communicator trouble Fire tamper trouble Fuse trouble Page 16

19 UNIT STATUS This message is sent by the HAI controller in reply to a REQUEST UNIT STATUS message. The controller reports the status of a group of control units. The status reported for each unit includes the unit's current condition and any time remaining on a timed command. Start character 0x5A Message length (3 * number of units) + 1 0x18 current condition of first unit Data 2 high byte of time for first unit Data 3 low byte of time for first unit Data 4 current condition of second unit Data 5 high byte of time for second unit Data 6 low byte of time for second unit... Data n-2 current condition of last unit Data n-1 high byte of time for last unit Data n low byte of time for last unit The current condition of the unit depends on the type of the unit. For X-10 units, the possible conditions are: 0 Last commanded off 1 Last commanded on Last commanded dim 1-9, respectively Last commanded brighten 1-9, respectively Last commanded level 0%-100%, respectively For Lightolier Compose PLC units: 0 Off 1 On 2-13 Scene A-L, respectively Last commanded dim 1-9, respectively Last commanded brighten 1-9, respectively For Advanced Lighting Control (ALC) relay modules: 0 Off 1 On For Advanced Lighting Control (ALC) dimmer modules: 0 Off 1 On Level 0%-100%, respectively For Universal Powerline Bus (UPB) units: 0 Off 1 On Level 0%-100%, respectively Page 17

20 For voltage outputs: For flags: For counters: 0 Off 1 On 0 Off Non-zero On Counter value The time remaining for the last command is specified in seconds. AUXILIARY STATUS This message is sent by the HAI controller in reply to a REQUEST AUXILIARY STATUS message. The controller reports the status of a group of temperature sensors. The status reported for each temperature sensor includes: the output relay status for Programmable Energy Saver Modules (PESMs), the current temperature reading, and the low and high temperature setpoints. Start character 0x5A Message length (4 * number of temperature sensors) + 1 0x1A Relay status for first temperature sensor Data 2 Current temperature for first temperature sensor Data 3 Low/heat temperature setpoint for first temperature sensor Data 4 High/cool temperature setpoint for first temperature sensor Data 5 Relay status for second temperature sensor Data 6 Current temperature for second temperature sensor Data 7 Low/heat temperature setpoint for second temperature sensor Data 8 High/cool temperature setpoint for second temperature sensor... Data n-3 Relay status for last temperature sensor Data n-2 Current temperature for last temperature sensor Data n-1 Low/heat temperature setpoint for last temperature sensor Data n High/cool temperature setpoint for last temperature sensor The relay status is non-zero if the relay is energized. The temperatures are reported in the Omni temperature format (see Appendix B). Page 18

21 THERMOSTAT STATUS This message is sent by the HAI controller in reply to a REQUEST THERMOSTAT STATUS message. The controller reports the status of a group of thermostats. The status reported for each thermostat includes whether the thermostat is communicating with the controller, whether a freeze condition has been detected by the thermostat, the current temperature, the heat and cool setpoints, the system mode, the fan mode, and whether the thermostat has been placed in hold mode. Start character 0x5A Message length (7 * number of thermostats) + 1 0x1F Status byte for first thermostat Data 2 Current temperature for first thermostat Data 3 Heat setpoint for first thermostat Data 4 Cool setpoint for first thermostat Data 5 System mode for first thermostat Data 6 Fan mode for first thermostat Data 7 Hold status for first thermostat Data 8 Status byte for second thermostat Data 9 Current temperature for second thermostat 0 Heat setpoint for second thermostat 1 Cool setpoint for second thermostat 2 System mode for second thermostat 3 Fan mode for second thermostat 4 Hold status for second thermostat... Data n-6 Status byte for last thermostat Data n-5 Current temperature for last thermostat Data n-4 Heat setpoint for last thermostat Data n-3 Cool setpoint for last thermostat Data n-2 System mode for last thermostat Data n-1 Fan mode for last thermostat Data n Hold status for last thermostat The bits in the thermostat status byte are shown below. The corresponding bit is set if the condition is true. Bit 0 Bit 1 Communications failure Freeze alarm The temperatures are reported in the Omni temperature format (see Appendix B). The system mode is as follows: 0 Off 1 Heat 2 Cool 3 Auto 4 Emergency heat Page 19

22 The fan mode is as follows: 0 Auto 1 On The hold status is non-zero if the thermostat is in hold mode. MESSAGE STATUS This message is sent by the HAI controller in reply to a REQUEST MESSAGE STATUS message. The controller reports the status of displayed text messages. The status reported for each message includes which messages are currently being displayed and what displayed messages have not been acknowledged. For OmniPro II, the status reported also indicates if there is a memo message that has not yet been played. The status of each text message is indicated by two bits. The low order bit is set if the message is currently being displayed on the system console. The high order bit is set if the message has not been acknowledged. The statuses for four messages are packed into one Omni-Link message byte. The status of the lower numbered message is packed into the two high order bits, and the status for the higher numbered messages are packed into the lower order bits. Four data bytes are used to report the status of the 16 messages in an OmniLT. Start character 0x5A Message length 0x06 0x25 0x00 Data 2 status of messages 1-4 Data 3 status of messages 5-8 Data 4 status of messages 9-12 Data 5 status of messages Sixteen data bytes are used to report the status of the 64 text messages in an Omni II system. Start character 0x5A Message length 0x12 0x25 0x00 Data 2 status of messages 1-4 Data 3 status of messages 5-8 Data 4 status of messages status of message status of messages Page 20

23 Thirty-two data bytes are used to report the status of the 128 text messages in an OmniPro and OmniPro II system. Start character 0x5A Message length 0x22 0x25 0x00 (for OmniPro II, bit 0 is set if memo message not yet played) Data 2 status of messages 1-4 Data 3 status of messages 5-8 Data 4 status of messages 9-12 Data 32 status of message Data 33 status of messages SYSTEM EVENT MESSAGES HAI controllers generate system events upon the occurrence of various changes in the controller (see Appendix C). These messages allow the external device to monitor changes in the HAI controller and to react to these changes. By periodically polling for system events the external device can quickly detect and operate on changes in the HAI controller. The REQUEST SYSTEM EVENTS message requests the HAI controller to send a list of system events that have occurred since the controller last reported system events. The controller responds with a SYSTEM EVENTS message that reports each of the system events in the order of occurrence. REQUEST SYSTEM EVENTS Start character Message length Data Expected reply 0x5A 0x01 0x22 none 0x81 0x89 SYSTEM EVENTS SYSTEM EVENTS Start character 0x5A Message length (2 * number of system events) + 1 0x23 High byte of oldest system event Data 2 Low byte of oldest system event Data 3 High byte of next oldest system event Data 4 Low byte of next oldest system event... Data n-1 High byte of most recent event Data n Low byte of most recent event Page 21

24 COMMAND MESSAGE The COMMAND message is used to send an immediate control command to the HAI controller. Commands are provided to control lights, appliances, temperatures, security, and messaging. Each command follows the same format: a single byte command, followed by a single byte parameter, and then a two byte secondary parameter. The command message is formatted as follows: Start character 0x5A Message length 0x05 0x0F Command Data 2 Parameter 1 Data 3 High byte of parameter 2 Data 4 Low byte of parameter 2 Expected reply ACKNOWLEDGE Each of the commands is shown: Command Parameter 1 Parameter 2 Description P1 P n unit P2 off n unit P2 off for P1 seconds n unit P2 off for P1-100 minutes n unit P2 off for P1-200 hours n unit P2 on n unit P2 on for P1 seconds n unit P2 on for P1-100 minutes n unit P2 on for P1-200 hours 2 0-n area P2 all off (0=all areas) 3 0-n area P2 all on (0=all areas) n unit P2 lighting level to P1 percent 10 1-n decrement counter P n increment counter P n set counter P2 to P1 Note: For ALC extended ramp commands, the unit is stored in the low 9 bits of P2. The level to ramp to (0-100%) is stored in the high 7 bits of P2. The rate specifies the full excursion (0% to 100% or 100% to 0%) ramp rate. Smaller excursions will reach the desired level in less time n unit Lo9(P2) ramp to Hi7(P2) at P1 seconds n unit Lo9(P2) ramp to Hi7(P2) at P1-100 minutes n unit Lo9(P2) ramp to Hi7(P2) at P1-200 hours n Lightolier Compose unit P2 off n Lightolier Compose unit P2 on n Lightolier Compose unit P2 scene A-L, respectively Page 22

25 15 1-n send request status message to UPB unit P2 16+s 0 1-n unit P2 dim s steps (s=1-9) 16+s n unit P2 dim s steps (s=1-9) for P1 seconds 16+s n unit P2 dim s steps (s=1-9) for P1-100 minutes 16+s n unit P2 dim s steps (s=1-9) for P1-200 hours 32+s 0 1-n unit P2 brighten s steps (s=1-9) 32+s n unit P2 brighten s steps (s=1-9) for P1 sec 32+s n unit P2 brighten s steps (s=1-9) for P1-100 minutes 32+s n unit P2 brighten s steps (s=1-9) for P1-200 hours 28 1-n UPB link P2 off (deactivate) 29 1-n UPB link P2 on (activate) 30 1-n UPB link P2 set (store preset) n UPB unit P2 LED P1 off n UPB unit P2 LED P1 on 46 1-n RadioRA Phantom Button off 47 1-n RadioRA Phantom Button on 60 1-n scene P2 off (Leviton Scene off command) 61 1-n scene P2 on (Leviton Scene on command) 62 1-n scene P2 set (Leviton Scene set command) For security commands, the code specified must be the user code number rather than the actual four digit security code. That is, send a 0x05 as the code if user code 5 is being used. 48+m 1-n 0-n arm area P2 in mode m with code P1 P2 = 0 means all areas m = security mode: 0 = disarm 1 = day mode 2 = night mode 3 = away mode 4 = vacation mode 5 = day instant mode 6 = night delayed mode 4 1-n 1-n bypass zone P2 with code P1 5 1-n 1-n restore zone P2 with code P1 6 1-n 0-n restore all area P2 zones with code P1 P2 = 0 means all areas/zones The execute macro button command can be used to activate the user operable macro buttons as well as system event macros (see Appendix C). 7 1-n execute macro button P set energy cost to P1 0 = low 1 = mid 2 = high 3 = critical Page 23

26 n energy saver P2 off n energy saver P2 off for P1 seconds n energy saver P2 off for P1-100 minutes n energy saver P2 off for P1-200 hours n energy saver P2 on n energy saver P2 on for P1 seconds n energy saver P2 on for P1-100 minutes n energy saver P2 on for P1-200 hours For commands 66-70, P2 may be set to zero to indicate "all thermostats" in those controllers that support this capability. For the following two commands, temperatures are stored in the Omni temperature format (see Appendix B) where 0 = -40 degc and 255 = 87.5 degc. Thus, corresponds to 0 to 122 degf or -18 to 50 degc n set temp zone P2 low/heat setpoint to P n set temp zone P2 high/cool setpoint to P n set thermostat P2 system mode to P1 0 = off 1 = heat 2 = cool 3 = auto n set thermostat P2 fan mode to P1 0 = auto 1 = on 70 0/255 0-n set thermostat P2 hold mode to P1 0 = off 255 = hold 80 1-n show message P n log message P n 0-n clear message P2 (0=all) if clear all messages, P1 = area (0=all) 83 1-n say message P n 1-n phone number P1 and say message P n 1-n send message P2 out serial port P1 Page 24

27 NAME MESSAGES Display names for zones, units, buttons, codes, areas, thermostats, and messages may be uploaded from and downloaded to the HAI controller through the Omni-Link protocol. Names for all items must be transferred as part of the same upload/download sequence. It is not possible to upload/download the name of a single item without uploading/downloading the names of all items. To upload names from the HAI controller, first send an UPLOAD NAMES message to the HAI controller. The controller will then send a series of NAME DATA messages, followed by a single END OF DATA message. Each NAME DATA message contains the name of a single item. NAME DATA messages are only sent for those items that have a name entered for them. The external device must acknowledge receipt of each NAME DATA message by sending an ACKNOWLEDGE message after each NAME DATA message is received. This informs the HAI controller that the NAME DATA message was received correctly and that the controller may send the next NAME DATA message. If for some reason the NAME DATA message is not received, the external device should send a NEGATIVE ACKNOWLEDGE message to the controller. This instructs the controller to resend the NAME DATA message that was missed. Once all names have been sent, the controller will send an END OF DATA message rather than a NAME DATA message, indicating the end of the name data transfer. If no names have been entered in the controller, the controller will respond with an END OF DATA message rather than a NAME DATA message in reply to the UPLOAD NAMES message. To download names to the HAI controller, first send a DOWNLOAD NAMES message to the HAI controller. This instructs the controller to clear the names of all items and to enter the download names sequence. The controller will reply with an ACKNOWLEDGE message. The external device should then send a series of NAME DATA messages, followed by a single END OF DATA message. Each NAME DATA message contains the name of a single item. NAME DATA messages should only be sent for those items that have a name entered for them. The controller will acknowledge receipt of each NAME DATA message by send an ACKNOWLEDGE message after each NAME DATA message is received. This informs the external device that the NAME DATA message was received correctly and that the external device may send the next NAME DATA message. If the ACKNOWLEDGE message is not received from the controller, the external device should resend the NAME DATA message that was missed. Once all names have been sent, the external device should send an END OF DATA message rather than a NAME DATA message, indicating the end of the name data transfer. The HAI controller will send an ACKNOWLEDGE message in reply to the END OF DATA message. UPLOAD NAMES Start character Message length Data 0x5A 0x01 0x0C none 0x01 0x95 DOWNLOAD NAMES Start character Message length Data 0x5A 0x01 0x0A none 0x81 0x97 Page 25

28 END OF DATA Start character Message length Data 0x5A 0x01 0x03 none 0x41 0x91 NAME DATA For item numbers less than 256, the item number is sent as a single byte: Start character 0x5A Message length (maximum name length, exclusive of terminating zero) + 4 0x0B item type Data 2 item number Data 3 first byte of name... Data n last byte of name For item numbers 256 or greater, the item number is sent as two bytes: Start character 0x5A Message length (maximum name length, exclusive of terminating zero) + 5 0x0B item type Data 2 item number (MSB) Data 3 item number (LSB) Data 4 first byte of name... Data n last byte of name The NAME DATA message specifies the name for a single item. Each name consists of one or more printable ASCII characters, followed by a terminating zero. Zone and message names can be up to 15 characters long, exclusive of the terminating zero. All other names may be up to 12 characters long. Names are always transferred with a fixed number of data bytes for each name type. Thus, a zone name will always be sent as 16 bytes, no matter how long the name really is. The terminating zero indicates the actual end of the name. Data bytes following the terminating zero may be filled with any value. The item type and item number specifies what is being named. The item type identifies whether the name is for a zone, unit, button, code, area, thermostat, or message. The item number identifies the specific zone, unit, button, code, area, thermostat, or message. Page 26

29 Listed below are the item type, maximum name length, and maximum number of each type of name: NAME TYPE LENGTH NUMBER NUMBER NUMBER NUMBER NUMBER (OmniLT) (Omni) (Omni II) (OmniPro) (OmniPro II) Zone Unit Button Code Area Thermostat Message EVENT LOG MESSAGES The HAI controller maintains an event log that records a time stamped listing of significant controller events, such as when the security system is armed/disarmed, alarm activations, and trouble conditions. The event log can store a fixed number of events. OmniLT systems can store 50 events in the event log. Omni systems can store 100 events in the event log. Omni II, OmniPro, and OmniPro II systems can store 250 events in the event log. Once the event log is full, logging a new event will cause the oldest event to be lost. The event log may be uploaded from the HAI controller through the Omni-Link protocol. To upload the event log, first send an UPLOAD EVENT LOG message to the HAI controller. The controller will then send a series of EVENT LOG DATA messages followed by a single END OF DATA message. Each EVENT LOG DATA message contains the data for a single event. The most recent event is sent first. The external device must acknowledge receipt of each EVENT LOG DATA message by sending an ACKNOWLEDGE message after each EVENT LOG DATA message is received. This informs the HAI controller that the EVENT LOG DATA message was received correctly and that the controller may send the next EVENT LOG DATA message. If for some reason the EVENT LOG DATA message is not received, the external device should send a NEGATIVE ACKNOWLEDGE message to the controller. This instructs the controller to resend the EVENT LOG DATA message that was missed. Once the complete event log has been sent, the controller will send an END OF DATA message rather than a EVENT LOG DATA message, indicating the end of the event log transfer. If no events have been logged yet, the controller will respond with an END OF DATA message rather than an EVENT LOG DATA message in reply to the UPLOAD EVENT LOG message. UPLOAD EVENT LOG Start character Message length Data 0x5A 0x01 0x0D none 0xC0 0x55 Page 27

30 EVENT LOG DATA Start character 0x5A Message length 0x0B 0x0E event number (1-n, with 1 being most recent) Data 2 time/date valid Data 3 month (1-12) Data 4 day (1-31) Data 5 hour (0-23) Data 6 minute (0-59) Data 7 event type Data 8 parameter 1 Data 9 high byte of parameter 2 0 low byte of parameter 2 The event number is a simple index that is incremented by 1 for each event log data message. Event 1 is the most recent event. The highest numbered event would be the oldest event. The month, day, hour, and minute specify the time that the event occurred. The time/date valid flag is zero if the controller time was not set when the event occurred. In this case, the month, day, hour, and minute fields do not contain valid data and should not be used. The time/date valid flag is non-zero when the time has been properly set in the controller. The event, parameter 1, and parameter 2 identify the specific event that has occurred. The possible events are shown in the table below. When a security code is specified, the value is the user code number rather than the actual four-digit security code. In addition to the user codes, the following security codes can be reported: 251 Duress code 252 Keyswitch 253 Quick arm 254 PC Access 255 Programmed Page 28

31 EVENT LOG EVENT TYPES Event Type Parameter 1 Parameter 2 P1 P2 Description 4 1-n 1-n zone P2 bypassed with code P1 5 1-n 1-n zone P2 restored with code P1 6 1-n 0-n all area P2 zones restored with code P1 P2 = 0 means all areas/zones 48+m 1-n 0-n area P2 armed in mode m with code P1 P2 = 0 means all areas m = security mode: 0 = disarm 1 = day mode 2 = night mode 3 = away mode 4 = vacation mode 5 = day instant mode 6 = night delayed mode n zone P2 tripped n zone P2 trouble n remote phone access with code P1 131 remote phone lockout n zone P2 auto bypassed n zone P2 trouble cleared n PC access with code P n 1-n alarm P1 activated in area P2 1 = burglary 2 = fire 3 = gas 4 = auxiliary 5 = freeze 6 = water 7 = duress 8 = temperature n 1-n alarm P1 reset in area P2 1 = burglary 2 = fire 3 = gas 4 = auxiliary 5 = freeze 6 = water 7 = duress 8 = temperature 137 system reset n message P2 logged Page 29

32 VALIDATE SECURITY CODE MESSAGES These messages instruct the controller to confirm that the specified four-digit security code is valid in the specified area. The code is only valid if it matches a four-digit user code in the area, and that code is currently time-enabled. The controller will return the user code number and authority level for the code. The controller will also check to see if the duress code was specified. If so, it will return the duress code number (251) as the user code number and set the authority level to user. REQUEST SECURITY CODE VALIDATION Start character 0x5A Message length 0x06 0x26 area number (1-8) Data 2 first digit of code Data 3 second digit of code Data 4 third digit of code Data 5 fourth digit of code Each of the digits of the security code must be sent as the numeric value of the digit, 0x00 through 0x09. SECURITY CODE VALIDATION Start character Message length Data 2 0x5A 0x03 0x27 user code number (1-99, 251 for duress, 0 if invalid) authority level The authority level is as follows: 0 Invalid code 1 Master 2 Manager 3 User Page 30

33 APPENDIX A - CRC-16 ERROR DETECTION ROUTINES This first routine is written in Turbo Pascal. First initialize CRC to 0. Then, starting with the message length byte, call Update_CRC for each byte of the message passing the message byte in Data. The low byte of CRC will contain the low byte of the CRC-16 remainder and should be sent first. The high byte of CRC will contain the high byte of the CRC-16 remainder and should be sent last. var CRC: Word; procedure Update_CRC(Data: Byte); const Poly = $A001; {CRC-16 polynomial} var I: Integer; Flag: Boolean; begin CRC := CRC xor Data; for I := 1 to 8 do begin Flag := (CRC and 1) <> 0; CRC := CRC shr 1; if Flag then CRC := CRC xor Poly; end; end {Update_CRC}; This next routine is written in Motorola MC68HC11 assembly language. First initialize CRC+0 and CRC+1 to 0. Then, starting with the message length byte, call UPDCRC for each byte of the message with the B accumulator containing the message byte. CRC+1 will contain the low byte of the CRC-16 remainder and should be sent first. CRC+0 will contain the high byte of the CRC-16 remainder and should be sent last. POLY EQU $A001 CRC-16 polynomial UPDCRC 10$ 20$ PSHB save registers PSHA EORB CRC+1 add in new byte LDAA #8 get shift count STAA CRC+1 use low byte of CRC for counter LDAA CRC+0 get high byte of CRC LSRA shift CRC RORB BCC 20$ branch if we didn't shift out a 1 EORA #>POLY add in CRC polynomial EORB #<POLY DEC CRC+1 count the shift BNE 10$ branch back if more to do STD CRC save updated CRC PULA restore registers PULB RTS Page 31

Home Automation, Inc. Omni-Link. Serial Protocol Description

Home Automation, Inc. Omni-Link. Serial Protocol Description Home Automation, Inc. Omni-Link Serial Protocol Description This document contains the intellectual property of Home Automation, Inc. (HAI). HAI authorizes the use of this information for the sole purpose

More information

Home Automation, Inc. Omni-Link II. Protocol Description

Home Automation, Inc. Omni-Link II. Protocol Description Home Automation, Inc. Omni-Link II Protocol Description This document contains the intellectual property of Home Automation, Inc. (HAI). HAI authorizes the use of this information for the sole purpose

More information

OmniPro II Version 2.8 Firmware Release

OmniPro II Version 2.8 Firmware Release OmniPro II Version 2.8 Firmware Release ADD THIS DOCUMENT TO YOUR OMNIPRO II OWNER S MANUAL Description The OmniPro II Version 2.8 firmware adds the following new feature: Support for the Extended Range

More information

OmniPro II Version 2.11 Firmware Release

OmniPro II Version 2.11 Firmware Release OmniPro II Version 2.11 Firmware Release ADD THIS DOCUMENT TO YOUR OMNIPRO II INSTALLATION MANUAL Description The OmniPro II Version 2.11 firmware adds the following new feature: Support for OmniTouch

More information

OmniLT Version 2.10 Firmware Release

OmniLT Version 2.10 Firmware Release OmniLT Version 2.10 Firmware Release ADD THIS DOCUMENT TO YOUR OMNILT OWNER S MANUAL Description The OmniLT Version 2.10 firmware adds the following new features: Support for the CentraLite LiteJet and

More information

OmniLT Version 2.9 Firmware Release

OmniLT Version 2.9 Firmware Release OmniLT Version 2.9 Firmware Release ADD THIS DOCUMENT TO YOUR OMNILT INSTALLATION MANUAL Description The OmniLT Version 2.9 firmware adds the following new features: HAI Lighting Control (HLC) integration

More information

Omni II Version 2.9 Firmware Release

Omni II Version 2.9 Firmware Release Omni II Version 2.9 Firmware Release ADD THIS DOCUMENT TO YOUR OMNI II OWNER S MANUAL Description The Omni II Version 2.9 firmware adds the following new features: HAI Lighting Control (HLC) integration

More information

Omni II Version 2.10 Firmware Release

Omni II Version 2.10 Firmware Release Omni II Version 2.10 Firmware Release ADD THIS DOCUMENT TO YOUR OMNI II OWNER S MANUAL Description The Omni II Version 2.10 firmware adds the following new features: Support for the CentraLite LiteJet

More information

OmniPro II Version 2.7 Firmware Release

OmniPro II Version 2.7 Firmware Release OmniPro II Version 2.7 Firmware Release ADD THIS DOCUMENT TO YOUR OMNIPRO II INSTALLATION MANUAL Description The OmniPro II Version 2.7 firmware adds the following new feature: Support for Lutron RadioRA

More information

OmniPro II Version 3.1 Firmware Release

OmniPro II Version 3.1 Firmware Release OmniPro II Version 3.1 Firmware Release ADD THIS DOCUMENT TO YOUR OMNIPRO II OWNER S MANUAL Description The OmniPro II Version 3.1 firmware adds the following new features: Added HAI Trigger messages for

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

OmniLT Version 2.6 Firmware Release

OmniLT Version 2.6 Firmware Release OmniLT Version 2.6 Firmware Release ADD THIS DOCUMENT TO YOUR OMNILT OWNER S MANUAL Description The OmniLT Version 2.6 firmware adds the following new feature: Support for UPB (Universal Powerline Bus)

More information

HAI Part Numbers and Descriptions March, 2003

HAI Part Numbers and Descriptions March, 2003 OmniLT Controllers 21A00-1 OmniLT Controller OmniLT controller with enclosure, RJ31X jack and cable, manuals, accessory kit. 21A00-2 OmniLT Board Only OmniLT controller board only 21A00-11 OmniLT for Leviton

More information

The RS-485 user manual for B800 series communication

The RS-485 user manual for B800 series communication The user manual of B800 Series Rs-485 The RS-485 user manual for B800 series RS-232 inbuilt inside the main board of B800 series frequency inverter, we can effect RS-485 through fitting board externally.

More information

COMMUNICATION MODBUS PROTOCOL

COMMUNICATION MODBUS PROTOCOL COMMUNICATION MODBUS PROTOCOL CE4DMID31 / CE4DMID21 CONTO D4 Pd MID PR123 20/10/2016 Pag. 1/9 Contents 1.0 ABSTRACT... 2 2.0 DATA MESSAGE DESCRIPTION... 3 2.1 Parameters description... 3 2.2 Data format...

More information

OmniPro II Version 2.11 Firmware Release

OmniPro II Version 2.11 Firmware Release OmniPro II Version 2.11 Firmware Release ADD THIS DOCUMENT TO YOUR OMNIPRO II OWNER S MANUAL Description The OmniPro II Version 2.11 firmware adds the following new features: Support for OmniTouch with

More information

Lumina Version 2.15 Firmware Release

Lumina Version 2.15 Firmware Release Lumina Version 2.15 Firmware Release ADD THIS DOCUMENT TO YOUR LUMINA ADVANCED APPLICATION GUIDE Description The Lumina Version 2.15 firmware adds the following new features: Support for DSC Power Series

More information

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

Real Time Clock with Temperature Sensor and RS485/Modbus Comunications

Real Time Clock with Temperature Sensor and RS485/Modbus Comunications Real Time Clock with Temperature Sensor and RS485/Modbus Comunications April 29, 2014 Power 8 20 VDC @ less than 100 MA. Battery connect jumper RS485 Bus Load Jumpers Model: RTC-TI2C Page 1 of 6 Features:

More information

Conto D2 COMMUNICATION PROTOCOL CONTENTS 1.0 INTRODUCTION

Conto D2 COMMUNICATION PROTOCOL CONTENTS 1.0 INTRODUCTION PR 121 rev. 0 11/11/2011 Pagina 1 di 9 ELECTRICITY ENERGY METER FIRMWARE 1.6 Conto D2 COMMUNICATION PROTOCOL CONTENTS 1.0 INTRODUCTION 2.0 DATA MESSAGE DESCRIPTION 2.1 Data field description 2.2 Data format

More information

GE MDS, LLC. NETio Series. Protocol Communications Supplement. March 2013 Part No A01, Rev. C

GE MDS, LLC. NETio Series. Protocol Communications Supplement. March 2013 Part No A01, Rev. C GE MDS, LLC. NETio Series Protocol Communications Supplement March 2013 Part No. 05-4672A01, Rev. C Modbus Protocol NETio Architectural Implementation As described in detail below, the Modbus RTU protocol

More information

CURRENT PROTECTION RELAY SMPR-1

CURRENT PROTECTION RELAY SMPR-1 CURRENT PROTECTION RELAY SMPR-1 1.- ORION ITALIA SERIES MODBUS PROTOCOL. The ORION ITALIA SERIES implement a subset of the AEG Modicon Modbus serial communication standard. Many devices support this protocol

More information

Lumina Version 3.0 Firmware Release

Lumina Version 3.0 Firmware Release Lumina Version 3.0 Firmware Release ADD THIS DOCUMENT TO YOUR LUMINA ADVANCED APPLICATION GUIDE Description The Lumina Version 3.0 firmware adds the following new features: UPB Transmit Count to increase

More information

Venstar Thermostat Adapter

Venstar Thermostat Adapter Developer Venstar Thermostat Adapter v001 Developer Venstar Thermostat Adapter Version 001 May 23, 2013 Revision History Rev Date Comments 001 05/23/13 Initial Release Page 1 of 13 Table of Contents 1

More information

Interface design document MODBUS Protocol. Ab s t r a c t Description of the MODBUS implementation for the Modbus I/O board

Interface design document MODBUS Protocol. Ab s t r a c t Description of the MODBUS implementation for the Modbus I/O board Interface design document 6-2011 MODBUS Protocol Ab s t r a c t Description of the MODBUS implementation for the Modbus I/O board 1 T a b l e o f c o n t e n t s 1 TABLE OF CONTENTS... 2 1.1 TABLES...

More information

The Omega product you have just received is of the highest quality available, offering superior performance, reliability and value to the user.

The Omega product you have just received is of the highest quality available, offering superior performance, reliability and value to the user. The Omega product you have just received is of the highest quality available, offering superior performance, reliability and value to the user. It is designed with the ever changing process conditions,

More information

CTT MODBUS-RTU COMMUNICATION PROTOCOL TEMPERATURE MONITOR DEVICE

CTT MODBUS-RTU COMMUNICATION PROTOCOL TEMPERATURE MONITOR DEVICE INSTRUCTION MANUAL IM149-U v0.92 CTT MODBUS-RTU COMMUNICATION PROTOCOL TEMPERATURE MONITOR DEVICE Firmware version: v3.0 or higher MODBUS PROTOCOL Modbus is a master-slave communication protocol able to

More information

COMMUNICATION MODBUS PROTOCOL

COMMUNICATION MODBUS PROTOCOL COMMUNICATION MODBUS PROTOCOL CE4DT36 CONTO D4 Pd (3-single phase) PR134 20/10/2016 Pag. 1/11 Contents 1.0 ABSTRACT... 2 2.0 DATA MESSAGE DESCRIPTION... 3 2.1 Parameters description... 3 2.2 Data format...

More information

SPI Lasers UK Limited. Serial Command Reference for the PRISM Laser Platform

SPI Lasers UK Limited. Serial Command Reference for the PRISM Laser Platform SPI Lasers UK Limited Serial Command Reference for the PRISM Laser Platform 1 of 89 Table of Contents Introduction... Connecting to the OEM Fibre Laser... Data Link Layer... Frame Structure... Data Element...

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

Developer Notes INSTEON Thermostat v012. Developer Notes. INSTEON Thermostat. Revision History

Developer Notes INSTEON Thermostat v012. Developer Notes. INSTEON Thermostat. Revision History Developer INSTEON Thermostat v012 Developer INSTEON Thermostat Version 012 June 19, 2012 Revision History Rev Date Comments 001 10/28/11 Initial Release 002 11/4/11 Updated formatting in some sections

More information

N700E Inverter RS485 Interface Instruction Manual

N700E Inverter RS485 Interface Instruction Manual Technical Support Document for Inverter Doc. No. Model TSD-N700E-COM-001E(00) All N700E model Rev. Date June, 2009 N700E Inverter RS485 Interface Instruction Manual Contents 1. RS485 function...1 1.1 function...1

More information

Protocol VIT5. Communications RS485. Version 1.0. Pg.Up ENTER. Pg.Up ENTER. Pg.Up ENTER. Pg.Up ENTER. Pg.Up ENTER. Pg.Up ENTER. Pg.Up ENTER. Pg.

Protocol VIT5. Communications RS485. Version 1.0. Pg.Up ENTER. Pg.Up ENTER. Pg.Up ENTER. Pg.Up ENTER. Pg.Up ENTER. Pg.Up ENTER. Pg.Up ENTER. Pg. 4.6.5. 0. 0. V 0. I. 2.0. 0. C 0. I. 2.0. 0. C 0. I. 2.0. 0. C 4.6.5. 0. 0. V 4.6.5. 0. 0. V 0. I. 2.0. 0. C 4.6.5. 0. 0. V 4.6.5. 0. 0. V VIT5 0. I. 2.0. 0. C Version 1.0 RS485 4.6.5. 0. 0. V Communications

More information

CE4DMID01 COMMUNICATION PROTOCOL CONTENTS 1.0 INTRODUCTION

CE4DMID01 COMMUNICATION PROTOCOL CONTENTS 1.0 INTRODUCTION 11/11/2011 Pagina 1 di 11 ELECTRICITY ENERGY METER FIRMWARE 1.3 CE4DMID01 COMMUNICATION PROTOCOL CONTENTS 1.0 INTRODUCTION 2.0 DATA MESSAGE DESCRIPTION 2.1 Data field description 2.2 Data format 2.3 Description

More information

OmniPro II Version 2.14 Firmware Release

OmniPro II Version 2.14 Firmware Release OmniPro II Version 2.14 Firmware Release ADD THIS DOCUMENT TO YOUR OMNIPRO II OWNER S MANUAL Description The OmniPro II Version 2.14 firmware adds the following new features: Support for Z-Wave technology

More information

Modbus Register Map: Galaxy 300

Modbus Register Map: Galaxy 300 Modbus Map: Galaxy 300 Notes: 1. 16-bit are transmitted MSB first (i.e. big-endian). 2. INT32 UINT16 and and UINT32 are are most-significant word in in n+0, least significant word in in n+1 n+1 (i.e. (i.e.

More information

B Interface description 12.01/

B Interface description 12.01/ B 95.3530.2 Interface description 12.01/00340396 Contents 1 Introduction 1.1 Preface... 3 1.2 Typographical conventions... 4 1.2.1 Warning signs... 4 1.2.2 Note signs... 4 1.2.3 Presentation... 4 2 Protocol

More information

isma-b-mg-ip User Manual Global Control 5 Sp. z o.o. Poland, Warsaw

isma-b-mg-ip User Manual Global Control 5 Sp. z o.o. Poland, Warsaw isma-b-mg-ip User Manual Global Control 5 Sp. z o.o. Poland, Warsaw www.gc5.pl Table of content 1 Introduction... 4 1.1 Revision history... 5 1.2 Safety rules... 5 1.3 Technical specifications... 6 1.4

More information

RS485 MODBUS Module 8AO

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

More information

COMMUNICATION MODBUS PROTOCOL

COMMUNICATION MODBUS PROTOCOL COMMUNICATION MODBUS PROTOCOL BOZZA_V04 Conto D6-Pd 05/12/2017 Pag. 1/15 CONTENTS 1.0 ABSTRACT... 2 2.0 DATA MESSAGE DESCRIPTION... 3 2.1 Parameters description... 3 2.2 Data format... 4 2.3 Description

More information

For more information Contact with details of the application.

For more information Contact with details of the application. Eaton Corporation Telecommunications Power Solutions Email: dc.info@eaton.com www.eaton.com/telecompower Application Note AN0107 SC200 Modbus Server Last updated 20 January 2017 Applicable products SC200

More information

Modbus Manual. ACL3200 Controller

Modbus Manual. ACL3200 Controller Modbus Manual for the ACL3200 Controller V 0.6 805 Main Ave. West Box 2002 Sundre, Alberta T0M 1X0 Phone: (877) 638-5234 Fax: (403) 638-4973 Email: aclmfg@telus.net Website: www.aclmfg.com Table of Contents

More information

Elotech Standard Protocol. for Single R8200 SC

Elotech Standard Protocol. for Single R8200 SC Elotech Standard Protocol interface description / network protocol for Single R8200 SC ELOTECH Industrieelektronik GmbH Verbindungsstraße 27 D - 40723 HILDEN FON +49 2103 / 255 97 0 FAX +49 2103 / 255

More information

MPU-32 AND FPU-32 TIA-485 NETWORK

MPU-32 AND FPU-32 TIA-485 NETWORK 3714 Kinnear Place Saskatoon, SK Canada S7P 0A6 Ph: (306) 373-5505 Fx: (306) 374-2245 www.littelfuse.com/protectionrelays MPU-32 AND FPU-32 TIA-485 NETWORK SEPTEMBER 5, 2006 PRELIMINARY Publication: MPU-32/FPU-32

More information

RS485 MODBUS Module 8I8O

RS485 MODBUS Module 8I8O Expansion Module 8 digital inputs, 8 digital outputs Version 2.2 12/01/2014 Manufactured for Thank you for choosing our product. This manual will help you with proper support and proper operation of the

More information

Automatic transfer switch

Automatic transfer switch Automatic transfer switch Modbus communication Protocol LINE 1 LINE 2 Q1 LOAD Q2 AUT RESET OFF _ OK MENU MENU AUT + MAN IR COM IEC 60947-6-1 Part. LE09507AA_EN-09/16-01 GF Automatic transfer switch EN

More information

Operating Instructions

Operating Instructions Operating Instructions CM4 Serial Communication Protocol CM4 Protocol License Agreement Carefully review the following terms and conditions before proceeding. In the event that you do not agree to these

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

FPU-16 A-B PROTOCOL/DATA LOGGER MANUAL

FPU-16 A-B PROTOCOL/DATA LOGGER MANUAL FPU-6 A-B PROTOCOL/DATA LOGGER MANUAL FEBRUARY 26, 22 PRELIMINARY Copyright 22 by Startco Engineering Ltd. All rights reserved. Publication: FPU-6-AB-M Document: S95-F6-AB Printed in Canada. Startco Engineering

More information

Lumina Pro Version 2.15 Firmware Release

Lumina Pro Version 2.15 Firmware Release Lumina Pro Version 2.15 Firmware Release ADD THIS DOCUMENT TO YOUR LUMINA PRO ADVANCED APPLICATION GUIDE Description The Lumina Pro Version 2.15 firmware adds the following new features: Support for DSC

More information

750/760 COMMUNICATIONS GUIDE. Digital Energy Multilin. Feeder Management Relay

750/760 COMMUNICATIONS GUIDE. Digital Energy Multilin. Feeder Management Relay Digital Energy Multilin 750/760 Feeder Management Relay COMMUNICATIONS GUIDE Software Revision: 7.3x GE Multilin Part Number: 1601-0229-A7 GE Publication Code: GEK-106473F Copyright 2010 GE Multilin GE

More information

RS485 S-Protocol Communications Supplemental Manual for Brooks GF40/GF80 Series Mass Flow Controllers and Meters

RS485 S-Protocol Communications Supplemental Manual for Brooks GF40/GF80 Series Mass Flow Controllers and Meters Installation and Operation Manual RS485 S-Protocol Communications Supplemental Manual for Brooks GF40/GF80 Series Mass Flow Controllers and Meters Brooks GF40/GF80 Series with RS485 Communications Installation

More information

SDM-8AO. Expansion Module 8 analog outputs. Manufactured for

SDM-8AO. Expansion Module 8 analog outputs. Manufactured for Version 1.0 16.05.2014 Manufactured for Thank you for choosing our product. This manual will help you with proper support and proper operation of the device. The information contained in this manual have

More information

P2 Configuration Guide

P2 Configuration Guide P2 Configuration Guide March 2018 Rev. 4.00 #220, 550 71 st Avenue SE Calgary, Alberta, Canada T2H 0S6 Phone: (403) 255-9544 Fax: (403) 259-2343 www.barnettprotalk.com E-mail: sales@barnettprotalk.com

More information

C Heat Trace Controller

C Heat Trace Controller C910-85 Heat Trace Controller MODBUS PROTOCOL INTERFACE MAPPING For Firmware version V.0.3 THERMAL MANAGEMENT SOLUTIONS EN-DigiTraceC910Modbus-AR-H585 02/13 CONTENTS Section 1 Introduction... 3 Section

More information

DNP Points List and Implementation

DNP Points List and Implementation S&C IntelliCap Plus Automatic Capacitor Control DNP Points List and Implementation Table of Contents Section Page Section Page DNP Points List for IntelliCap Plus Controls...1 Status Points....2 Analog

More information

HOME AUTOMATION, INC. Lumina Lighting and Automation System. Advanced Application Guide

HOME AUTOMATION, INC. Lumina Lighting and Automation System. Advanced Application Guide HOME AUTOMATION, INC. Lumina Lighting and Automation System Advanced Application Guide Document Number 44R00-1 Rev. 2.12 March, 2006 Copyright 2001-2006 Home Automation, Inc. All Rights Reserved Contents

More information

RS485 MODBUS Module 16I-M

RS485 MODBUS Module 16I-M Version 2.0 12/02/2013 Manufactured for Thank you for choosing our product. This manual will help you with proper support and proper operation of the device. The information contained in this manual have

More information

Manual 09/11 MN Z-EN. NZM-XATS-C Automatic Transfer Switch-Controller Modbus Communication Protocol

Manual 09/11 MN Z-EN. NZM-XATS-C Automatic Transfer Switch-Controller Modbus Communication Protocol Manual 09/11 MN01219007Z-EN NZM-XATS-C Automatic Transfer Switch-Controller Modbus Communication Protocol All brand and product names are trademarks or registered trademarks of the owner concerned. Emergency

More information

Technical Documentation

Technical Documentation Technical Documentation FAFNIR Universal Device Protocol Edition: 02/2018 Version: 1.09 Article no.: 350052 FAFNIR GmbH Schnackenburgallee 149 c 22525 Hamburg Tel.: +49 / 40 / 39 82 07 0 Fax: +49 / 40

More information

Conto D1 MODBUS COMMUNICATION PROTOCOL

Conto D1 MODBUS COMMUNICATION PROTOCOL ENERGY METER Conto D1 MODBUS COMMUNICATION PROTOCOL 4/03/15 Pagina 1 di 7 FIRMWARE CONTENTS 1.0 ABSTRACT 2.0 DATA MESSAGE DESCRIPTION 2.1 Parameters description 2.2 Data format 2.3 Description of CRC calculation

More information

COMMUNICATION MODBUS PROTOCOL MF96001 / 021 NEMO 96HD

COMMUNICATION MODBUS PROTOCOL MF96001 / 021 NEMO 96HD COMMUNICATION MODBUS PROTOCOL MF96001 / 021 NEMO 96HD PR106 20/10/2016 Pag. 1/31 Contents 1.0 ABSTRACT... 2 2.0 DATA MESSAGE DESCRIPTION... 3 2.1 Parameters description... 3 2.2 Data format... 4 2.3 Description

More information

HAI Distributor Availability October 2005

HAI Distributor Availability October 2005 OmniLT Controllers 21A00-1 Omni LT Controller Omni LT controller with enclosure, RJ31X jack and cable,, accessory kit. 21A00-2 Omni LT Board Only Omni LT controller board only 21A00-11 Omni LT for Structured

More information

SPM90 MODBUS PROTOCOL AND REGISTER LIST V1.0

SPM90 MODBUS PROTOCOL AND REGISTER LIST V1.0 SPM90 MODBUS PROTOCOL AND REGISTER LIST V1.0 目 录 1. Introduction... 1 1.1 Purpose of the Communication Protocol... 1 1.2 Version of Communication Protocol... 1 2. Detailed Description of the SPM90 Modbus

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

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

RS 485 Mini Modbus 1AO

RS 485 Mini Modbus 1AO RS 485 Mini Modbus 1AO Version 1.0 14/08/2014 Manufactured for Thank you for choosing our product. This manual will help you with proper support and proper operation of the device. The information contained

More information

Lumina Pro WEB VERSION. Advanced Application Guide. Lighting and Automation System

Lumina Pro WEB VERSION. Advanced Application Guide. Lighting and Automation System Lumina Pro Lighting and Automation System Advanced Application Guide Contents * INTRODUCTION... 1 Planning... 1 INSTALLATION... 2 Mount the Lumina Enclosure... 3 Ground the Lumina Controller... 3 Connect

More information

PROTOCOL CONVERTER S2000-PP

PROTOCOL CONVERTER S2000-PP PROTOCOL CONVERTER S000-PP USER S MANUAL Table of Content Purpose Specifications Operating 4.. Orion Interface 4.. Modbus/T Interface 5.. S000-PP Operating with a Modbus System 6 4 PCB Layout 9 5 Preparing

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

VPGate Manual PROFIBUS to serial

VPGate Manual PROFIBUS to serial VPGate Manual PROFIBUS to serial Important information Purpose of the Manual This user manual provides information how to work with the VPGate PROFIBUS to serial. Document Updates You can obtain constantly

More information

PM290 POWERMETER. Communication Protocols ASCII & Modbus Reference Guide

PM290 POWERMETER. Communication Protocols ASCII & Modbus Reference Guide PM290 POWERMETER Communication Protocols ASCII & Modbus Reference Guide PM290 Communication Protocols Communication protocol is a method of transferring information between different devices (i.e., the

More information

JUMO Quantrol LC100/LC200/LC300

JUMO Quantrol LC100/LC200/LC300 JUMO Quantrol LC100/LC200/LC300 Universal PID Controller Series B 702030.2.0 Interface Description Modbus 2013-05-27/00600589 Content 1 Introduction................................................ 5 1.1

More information

UPB US1-40 Single Rocker Wall Switch with Dimmer Firmware Specification

UPB US1-40 Single Rocker Wall Switch with Dimmer Firmware Specification UPB US1-40 Single Rocker Wall Switch with Dimmer Firmware Specification V 1.0 5/18/05 Revision History Spec. Rev. Date Firmware Rev. Description 1.0 5/18/05 V2.12 Originated from US2 spec V1.9 Table of

More information

Specifications Manual

Specifications Manual TCS-NET MODBUS Model name: TCB-IFMB640TLE Contents 1 System Overview... 2 2 RS 485 Communication Parameters... 3 3 Applied Function Codes... 3 4 Exception Response... 4 5 Counters and Registers... 4 6

More information

IF96017 MODBUS COMMUNICATION PROTOCOL

IF96017 MODBUS COMMUNICATION PROTOCOL CONTENTS 1.0 ABSTRACT 04/07/14 Pagina 1 di 9 MULTIFUNCTION FIRMWARE 1.00 COMMUNICATION PROTOCOL IF96017 MODBUS COMMUNICATION PROTOCOL 2.0 DATA MESSAGE DESCRIPTION 2.1 Parameters description 2.2 Data format

More information

SOFTWARE FUNCTIONAL REQUIREMENTS SPECIFICATION. Athena DeviceNet Interface Module Revision /26/2001

SOFTWARE FUNCTIONAL REQUIREMENTS SPECIFICATION. Athena DeviceNet Interface Module Revision /26/2001 SOFTWARE FUNCTIONAL REQUIREMENTS SPECIFICATION Athena DeviceNet Interface Module Revision 1.40 2/26/2001 Page 2 of 2 TABLE OF CONTENTS 1. RODUCTION...6 1.1 Overview...6 1.2 Document Scope...6 1.3 Definitions...6

More information

The accessories described in this manual are of the highest quality, carefully designed and built in order to ensure excellent performance.

The accessories described in this manual are of the highest quality, carefully designed and built in order to ensure excellent performance. User Manual INTRODUCTION Thank you for choosing our product. The accessories described in this manual are of the highest quality, carefully designed and built in order to ensure excellent performance.

More information

Communications guide. Line Distance Protection System * F1* GE Digital Energy. Title page

Communications guide. Line Distance Protection System * F1* GE Digital Energy. Title page Title page GE Digital Energy D90 Plus Line Distance Protection System Communications guide D90 Plus firmware revision:.9x GE publication code: 60-9070-F (GEK-3469) GE Digital Energy 650 Markland Street

More information

ISO 9001 CERTIFIED. 607 NW 27th Ave Ocala, FL Phone: (352) or Fax: (352) OPERATION MANUAL. Total System Manager

ISO 9001 CERTIFIED. 607 NW 27th Ave Ocala, FL Phone: (352) or Fax: (352) OPERATION MANUAL. Total System Manager ISO 9001 CERTIFIED Phone: (352) 629-5020 or 800-533-3569 Fax: (352)-629-2902 Total System Manager PAGE 1 of 17 1. REVISION LOG... 2 2. SYSTEM OVERVIEW... 3 2.1. SCOPE... 3 2.2. FEATURES... 3 3. OPERATIONAL

More information

SDM-8I8O. Expansion Module 8 digital inputs, 8 digital outputs. Manufactured for

SDM-8I8O. Expansion Module 8 digital inputs, 8 digital outputs. Manufactured for Version 1.2 20.01.2014 Manufactured for Thank you for choosing our product. This manual will help you with proper support and proper operation of the device. The information contained in this manual have

More information

NOVOtechnik. Content. TIM CANopen Gebrauchsanleitung TIM CANopen user manual SIEDLE GRUPPE

NOVOtechnik. Content. TIM CANopen Gebrauchsanleitung TIM CANopen user manual SIEDLE GRUPPE Content 9 CANopen 2 9.1 EDS Files 2 9.2 Features 2 9.2.1 Basic information 2 9.2.2 Basics based on CiA DS-301, V4.02 2 9.2.3 Basics based on CiA DSP-406, V3.2 3 9.2.4 Basics SDO communication 3 9.2.5 Basics

More information

JUMO ctron 04/08/16. Compact controller with timer and ramp function. B Interface Description Modbus /

JUMO ctron 04/08/16. Compact controller with timer and ramp function. B Interface Description Modbus / JUMO ctron 04/08/16 Compact controller with timer and ramp function 702071 702072 702074 B 70.2070.2.0 Interface Description Modbus 2008-08-11/00492538 Contents 1 Introduction 5 1.1 Preface... 5 1.2 Typographical

More information

LMV2 / LMV3... Modbus. User Documentation. Building Technologies Division

LMV2 / LMV3... Modbus. User Documentation. Building Technologies Division LMV2 / LMV3... Modbus User Documentation The LMV2... / LMV3... burner management system and this User Documentation are intended for OEMs and system integrators which integrate the system in their products!

More information

On Control SUSA v1.1 MODBUS Functions

On Control SUSA v1.1 MODBUS Functions Summary of functions: Function code 0x03 Read holding registers and Function code 0x04 Read input registers (both functon codes are equivalent): Register address: 0x0000..0x0102 (0..258) 0x0200..0x0281

More information

CAN / RS485. Product Description. Technical Reference Note. Interface Adapter. Special Features

CAN / RS485. Product Description. Technical Reference Note. Interface Adapter. Special Features CAN / Interface Adapter For SHP Series Total Power: < 1 Watts Input Voltage: 5V Internal Outputs: CAN,, USB, I 2 C Special Features Input Protocols: 1) using Modbus 2) CAN using modified Modbus Output

More information

Custom Installation Notes IP/Serial programming interface and IR remote control commands for the SA10/SA20 integrated amplifier

Custom Installation Notes IP/Serial programming interface and IR remote control commands for the SA10/SA20 integrated amplifier Custom Installation Notes IP/Serial programming interface and IR remote control commands for the SA10/SA20 integrated amplifier INTEGRATED AMPLIFIER PHONES AUX MUTE AUX PHONO STB PVR AV BD CD SAT POWER

More information

11 Serial Communications

11 Serial Communications 11.1 COMMUNICATIONS PACKAGES There are a number of communication packages that can be used with the Quantum III to facilitate setup, record parameter data, view internal activity on a soft-scope and permit

More information

MODBUS AND BACNET COMMUNICATION INSTRUCTIONS

MODBUS AND BACNET COMMUNICATION INSTRUCTIONS 100275719_2000534455_Rev A MODBUS AND BACNET COMMUNICATION INSTRUCTIONS Power-Fin Models: 2500-5000 WARNING This manual must only be used by a qualified heating installer / service technician. Read all

More information

RS485 MODBUS Module 8I8RO

RS485 MODBUS Module 8I8RO Expansion Module 8 digital inputs, 8 relay outputs Version 1.0 3.12.2014 Manufactured for Thank you for choosing our product. This manual will help you with proper support and proper operation of the device.

More information

Host Controller Systems. Instruction Manual

Host Controller Systems. Instruction Manual Host Controller Systems Instruction Manual Original Instructions 132114 Rev. I 30 July 2014 132114 Contents 1 Host Controller Systems... 3 2 SureCross DX80 Modbus Register Definitions... 4 2.1 Modbus Holding

More information

Generator Management Relay COMMUNICATIONS GUIDE

Generator Management Relay COMMUNICATIONS GUIDE Title Page g GE Industrial Systems 489 Generator Management Relay COMMUNICATIONS GUIDE Software Revision: 3.00 GE Publication Code: GEK-106495A Part Number: 1601-0149-A2 Copyright 2004 215 Anderson Avenue,

More information

COMMUNICATION MODBUS PROTOCOL

COMMUNICATION MODBUS PROTOCOL COMMUNICATION MODBUS PROTOCOL MFD4E06 - NEMO-D4e PR146 08/03/2018 Pag. 1/16 CONTENTS 1.0 ABSTRACT... 2 2.0 DATA MESSAGE DESCRIPTION... 3 2.1 Parameter description... 3 2.2 Data format... 4 2.3 Description

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

SC2004MBS 20x4 Characters MODBUS RTU Slave LCD

SC2004MBS 20x4 Characters MODBUS RTU Slave LCD SC004MBS 0x4 Characters MODBUS RTU Slave SC004MBS is a MODBUS slave device that receives data from a Master MODBUS device and display them on the panel. The is 0 x 4 characters in size and each character

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

PRE32 RS232 protocol v1.21 Tomas Andersson

PRE32 RS232 protocol v1.21 Tomas Andersson PRE32 RS232 protocol 2014-11-07 v1.21 Tomas Andersson Description This document describes the RS232 protocol used to control the PRE32 device. Command structure Commands are sent to the device using the

More information

LiteTouch Integration Manual

LiteTouch Integration Manual LiteTouch Integration Manual Integrating a LiteTouch system with Home Automation components Systems Integration Manual June 2006 3400 South West Temple Salt Lake City, Utah 84115 Phone: 801.486.8500 Technical

More information

EVOHD. Programming Guide. Version

EVOHD. Programming Guide. Version EVOHD Programming Guide Version 1.11 www.paradox.com Warranty For complete warranty information on this product please refer to the Limited Warranty Statement found on our Web site: www.paradox.com. Your

More information

TABLE OF CONTENTS. Communication Functions

TABLE OF CONTENTS. Communication Functions TABLE OF CONTENTS Chapter 1: Chapter 2: Chapter 3: Chapter 4: General Features....................................................... 1-1 Functions......................................................

More information