CONTENTS Project name WMHpc Revision 1.3

Size: px
Start display at page:

Download "CONTENTS Project name WMHpc Revision 1.3"

Transcription

1 , modbus protocol, Modbus protocol (rev 1).doc 1/20 CONTENTS 1 MODBUS protocol and parameters Implementation Commands... 3 Parameters MODBUS virtual memory map Bit addressing area (#01: "coil" parameters) Bit addressing area (#02: "input" parameters) Register addressing area (#03, #06, #16: "holding register" parameters) Register addressing area (#04: "input register" parameters)... 20

2 , modbus protocol, Modbus protocol (rev 1).doc 2/20 1 MODBUS protocol and parameters 1.1 Implementation A selection from the available parameters are mapped into virtual memory areas for Modbus access. There are two such areas available, and each parameter is mapped into the area that best corresponds to the parameter type. One area is dedicated for bit addressing ("coil/input"-parameters), and the other area for register addressing ("holding register/input register"-parameters). Each area starts at an address that is dependent on the command used for data access. that the bit- and register addresses listed in this document should be decremented by a command specific offset when converting to the address actually transferred in the Modbus communication protocol. (See information at each command for further information). This is done in accordance with the Modbus standard of implementation and is usually handled automatically by the client driver. Some parameters are left out due to limitations in the protocol, or because they are considered relevant only for the web interface. (E.g. no voluminous text parameters are included). All holding registers are implemented with 16 bit address resolution. "Register" (as in "number of registers") is handled and counted as words (2 bytes). The smallest element size of a parameter in the register addressing area is one word (2 bytes). Reading from an unmapped area gives 0-values (no exception code is generated). Writing to an unmapped area is ignored (no exception code is generated). Reading from a non-readable parameter gives 0-values (no exception code is generated). Writing to a non-writeable parameter is ignored (no exception code is generated). If a parameter is readable, but the read fails for some other reason (internal error?), the exception code illegal data value is generated (this should never happen!). If a parameter is writeable, but the write fails for some other reason (e.g. out of range), exception code illegal data value is generated. Reading or writing outside the 64k Modbus address area gives exception code "illegal data address". For register addressing, specifying "number of registers" < 1 or "number of registers" >122 gives exception code "illegal data address". For bit addressing, specifying "number of bits" < 1 or "number of bits" > 1960 (i.e. 245 bytes) gives exception code "illegal data address". It is not allowed to begin or end reading or writing in the middle of a parameter element that consist of multiple registers (long, fix, etc.). Exception code "illegal data address" is then given, but it is allowed to begin or end reading or writing between parameter elements within a parameter. Numeric parameter elements (int, long etc.) are sent with MSB first (big endian). The Modbus command itself (start address, number of registers etc.) is also sent with MSB first (big endian), except for the CRC-checksum, which is sent with LSB first (little endian), according to the Modbus standard.

3 , modbus protocol, Modbus protocol (rev 1).doc 3/ Commands Only a subset of the general Modbus commands and exception codes are supported: Commands dedicated for bit addressing area ("input/coil"-parameters) #01 = "Read coils". #02 = "Read discrete inputs" 1. Commands dedicated for register addressing area ("holding register"-parameters) #03 = "Read holding registers". #04 = "Read input registers" 2. #06 = "Write single register". #16 = "Write multiple registers". The following exception codes can be generated 01 = "Illegal function". 02 = "Illegal data address". 03 = "Illegal data value". 06 = "Slave device busy" (configurable usage). Description of command table (see next page) Q = Question. A = Answer. Exc = Exception code. id = communication address (slave). addr = Start address (big endian). regs = Number of registers (big endian). bits = Number of bits (big endian). bytes = Byte count. value = Data value (big endian). mask = Data bitmask. crc = Cyclic redundancy checksum (little endian). <:1> = Item size is 1 byte. <:2> = Item size is 2 byte. <:N> = Item size in number of bytes, according to the content of bytes. 1 Identical functionality as command #01 but with a different memory mapping. 2 Identical functionality as command #03 but with a different memory mapping.

4 , modbus protocol, Modbus protocol (rev 1).doc 4/20 #01: "Read coils" N = size according to bytes = (bits + 7) div 8 Q: <id:1>,<0x01>,<addr:2>,<bits:2>,<crc:2> A: <id:1>,<0x01>,<bytes:1>,<mask:n>,<crc:2> Exc: <id:1>,<0x81>,<exc:1>,<crc:2> #02: "Read discrete inputs" N = size according to bytes = (bits + 7) div 8 Q: <id:1>,<0x02>,<addr:2>,<bits:2>,<crc:2> A: <id:1>,<0x02>,<bytes:1>,<mask:n>,<crc:2> Exc: <id:1>,<0x82>,<exc:1>,<crc:2> #03: "Read holding registers" N = size according to bytes = regs * 2 Q: <id:1>,<0x03>,<addr:2>,<regs:2>,<crc:2> A: <id:1>,<0x03>,<bytes:1>,<value:n>,<crc:2> Exc: <id:1>,<0x83>,<exc:1>,<crc:2> #04: "Read input registers" N = size according to bytes = regs * 2 Q: <id:1>,<0x04>,<addr:2>,<regs:2>,<crc:2> A: <id:1>,<0x04>,<bytes:1>,<value:n>,<crc:2> Exc: <id:1>,<0x84>,<exc:1>,<crc:2> #06: "Write single register" Q: <id:1>,<0x06>,<addr:2>,<value:2>,<crc:2> A: <id:1>,<0x06>,<addr:2>,<value:2>,<crc:2> Exc: <id:1>,<0x86>,<exc:1>,<crc:2> #16: "Write multiple registers" N = size according to bytes Q: <id:1>,<0x10>,<addr:2>,<regs:2>,<bytes:1>,<value:n>,<crc:2> A: <id:1>,<0x10>,<addr:2>,<regs:2>,<crc:2> Exc: <id:1>,<0x90>,<exc:1>,<crc:2>

5 , modbus protocol, Modbus protocol (rev 1).doc 5/20 Parameters A parameter element can have one of the following standard data types: bool : 1 bit data, boolean (range = 0.. 1). uchar : 1 byte data, unsigned character (range = ). schar : 1 byte data, signed character (range = ). uint : 2 byte data, unsigned integer (range = ). sint : 2 byte data, signed integer (range = ). ulong : 4 byte data, unsigned long integer (range = ). slong : 4 byte data, signed long integer (range = ). fixn : 4 byte data, signed long integer * 10 N (real, with a fixed number of decimals = N). These parameter elements can then be arranged into 0, 1, 2 or 3 dimensions, hence called "single", "array", "matrix" or "cube". 0-dimensional parameters (single) consist of only one single data element. 1-dimensional parameters (array) consist of an array of data elements. 2-dimensional parameters (matrix) consist of an array of arrays of data elements.

6 , modbus protocol, Modbus protocol (rev 1).doc 6/20 2 MODBUS virtual memory map 2.1 Bit addressing area (#01: "coil" parameters) Accessible via Modbus command #01. 8 bits of data are packed into each byte in the answer, starting from initial bit address in the request, and any additional bits to fill up the last answer byte are set to zero. (See chapter 1.2). : Bit addr, Size and Offs are given in bit resolution for this table. Bit addr should be decremented by 1 when converting to protocol level address. Bit addr (Size) +Offs Bit addressed parameters RW Type [Value] Unit (70) ALARMSTATUS Status of active alarms (as bits instead of registers) array R bool [0..1] 0 = Not active 1 = Active +0 Alarm 01: High return temp All +1 Alarm 02: Temp diff brine All +2 Alarm 03: Compressor current All +3 Alarm 04: Brine pump current All +4 Alarm 05: High pressure All +5 Alarm 06: Low pressure All +6 Alarm 07: Low brine flow Option +7 Alarm 08: Brine pressure Option +8 Alarm 09: Compressor heat All +9 Alarm 10: Hot gas temperature Not used +10 Alarm 11: Control pressostat All +11 Alarm 12: Sensor supply temp All +12 Alarm 13: Sensor return temp All +13 Alarm 14: Broken outdoor temp Master +14 Alarm 15: Sensor hot water Master +15 Alarm 16: Sensor hot gas temp Option +16 Alarm 17: Sensor brine in All +17 Alarm 18: Sensor brine out All +18 Alarm 19: Sensor prim. supply Master +19 Alarm 20: HPC RM Communication All +20 Alarm 21: 24 VAC Power fail All +21 Alarm 22: WCS sensor Error Option +22 Alarm 23: WCS Controller error Option +23 Alarm 24: Sensor Error TWC Option +24 Alarm 25: TWC out temp Option +25 Alarm 26: TWC Return Temp Option +26 Alarm 27: Ctrl err cooling c Option +27 Alarm 28: Sensor cooling tank Option +28 Alarm 29: Sensor surplus cool Option +29 Alarm 30: Sensor cooling t out Option +30 Alarm 31: Sensor cooling circ. Option +31 Alarm 32: Reserved Not used

7 , modbus protocol, Modbus protocol (rev 1).doc 7/ Alarm 33: Reserved Not used +33 Alarm 34: Shunt 1 sensor Option +34 Alarm 35: Shunt 1 ctrl err Option +35 Alarm 36: Shunt 2 sensor Option +36 Alarm 37: Shunt 2 ctrl err Option +37 Alarm 38: Shunt 3 sensor Option +38 Alarm 39: Shunt 3 ctrl err Option +39 Alarm 40: Shunt 4 sensor Option +40 Alarm 41: Shunt 4 ctrl err Option +41 Alarm 42: Shunt 5 sensor Option +42 Alarm 43: Shunt 5 ctrl err Option +43 Alarm 44: Shunt 6 sensor Option +44 Alarm 45: Shunt 6 ctrl err Option +45 Alarm 46: Shunt 7 sensor Option +46 Alarm 47: Shunt 7 ctrl err Option +47 Alarm 48: Shunt 8 sensor Option +48 Alarm 49: Shunt 8 ctrl err Option +49 Alarm 50: Communication Master Slave +50 Alarm 51: High brine in temp Option +51 Alarm 52: Low brine in temp Option +52 Alarm 53: Low brine out temp Option +53 Alarm 54: Slave pump missing Master +54 Alarm 55: Reserved Not used +55 Alarm 56: Reserved Not used +56 Alarm 57: Reserved Not used +57 Alarm 58: Reserved Not used +58 Alarm 59: Reserved Not used +59 Alarm 60: Reserved Not used +60 Alarm 61: Reserved Not used +61 Alarm 62: Reserved Not used +62 Alarm 63: Reserved Not used +63 Alarm 64: Reserved Not used +64 Alarm 65: Reserved Not used +65 Alarm 66: Reserved Not used +66 Alarm 67: Reserved Not used +67 Alarm 68: Reserved Not used +68 Alarm 69: Reserved Not used +69 Alarm 70: Reserved Not used

8 , modbus protocol, Modbus protocol (rev 1).doc 8/ Bit addressing area (#02: "input" parameters) Accessible via Modbus command #02. Identical to command #01, except that the memory map starts at instead of 0. (See chapter 2.1). : Bit addr should be decremented by when converting to protocol level address. (Protocol level addresses are identical between command #01 and #02).

9 , modbus protocol, Modbus protocol (rev 1).doc 9/ Register addressing area (#03, #06, #16: "holding register" parameters) Accessible via Modbus commands #03, #06, #16. : Word addr, Size and Offs are given in word resolution for these tables. Word addr should be decremented by when converting to protocol level address. Word addr (Size) +Offs Word addressed parameters RW Type [Value] Unit (1) MODBUSREVISION Modbus protocol revision (for future usage) single RW uint (8) VERNR version numbers +0 Bootloader +2 Firmware +4 Webpages +6 Appscript array R fix (70) ALARMSTATUS Status of active alarms (as registers instead of bits) array R uint [0..1] +0 0 = Not active 1 = Active See ALARMSTATUS (chapter 2.1) (70) ALARMACK Acknowledge/Reset one active alarm Signature XXX will be used in the event log array W uint [1] +0 1 = Acknowledge one active alarm See ALARMSTATUS (1) EVENTACK_ALL Acknowledge/Reset all active events 3 and alarms Signature XXX will be used in the event log single W uint [1] 1 = Acknowledge all active events and alarms (400) CHNVALUE array R fix# Channel value +0 Channel 001: Supplytemperature Master fix1 C +2 Channel 002: Returntemperature All fix1 C +4 Channel 003: Outdoor temp fix1 C +6 Channel 004: Hot water start sensor Master fix1 C +8 Channel 005: Hot gas temp All fix1 C +10 Channel 006: Brine in temperature All fix1 C +12 Channel 007: Brine out temperature All fix1 C 3 Acknowledge of individual active events are currently not available via Modbus, neither is status of active events, but EVENTACK_ALL will acknowledge/reset all active events, together with all active alarms.

10 , modbus protocol, Modbus protocol (rev 1).doc 10/ Channel 008: Primary supply temp Master fix1 C +16 Channel 009: Room temperature Option fix1 C +18 Channel 010: Reserved Not used fix Channel 011: Reserved Not used fix Channel 012: Reserved Not used fix Channel 013: Reserved Not used fix Channel 014: Reserved Not used fix Channel 015: Reserved Not used fix Channel 016: Reserved fix0 +32 Channel 017: High comressor current fix0 +34 Channel 018: High pump current fix0 +36 Channel 019: Control pressostat fix0 +38 Channel 020: High pressure pressostat fix0 +40 Channel 021: Low pressure pressostat fix0 +42 Channel 022: Flowsensor fix0 +44 Channel 023: Compressor over heat fix0 +46 Channel 024: External brine start fix0 +48 Channel 025: Extra heater Master fix1 % +50 Channel 026: Analog out 2 fix1 V +52 Channel 027: Mean fix1 C +54 Channel 028: Max fix1 C +56 Channel 029: Min fix1 C +58 Channel 030: Mean fix1 C +60 Channel 031: Max fix1 C +62 Channel 032: Min fix1 C +64 Channel 033: Start/Stop compressor All fix0 +66 Channel 034: Start/Stop brinepump All fix0 +68 Channel 035: Start/Stop rad.pump All fix0 +70 Channel 036: Hot water switchover valve All fix0 +72 Channel 037: Block. extra heater Master fix0 +74 Channel 038: Sum alarm All fix0 +76 Channel 039: System pump Master fix0 +78 Channel 040: Digital out 8 fix0 +80 Channel 041: Led master fix0 +82 Channel 042: Led AO1 fix0 +84 Channel 043: Mean fix1 C +86 Channel 044: Max fix1 C +88 Channel 045: T1 fix1 ohm +90 Channel 046: T2 fix1 ohm +92 Channel 047: T3 fix1 ohm +94 Channel 048: T4 fix1 ohm +96 Channel 049: T5 fix1 ohm +98 Channel 050: T6 fix1 ohm +100 Channel 051: T7 fix1 ohm +102 Channel 052: T8 fix1 ohm +104 Channel 053: RM Reset fail fix Channel 054: Controller function fix Channel 055: RM Comm Fail fix Channel 056: RM Power fail fix Channel 057: RM Comm Start fix Channel 058: RM First Connect fix Channel 059: Number of HP fix0

11 , modbus protocol, Modbus protocol (rev 1).doc 11/ Channel 060: No of Heating HPs fix Channel 061: No of hot Water HPs fix Channel 062: TW Max fix Channel 063: Control pres. active fix Channel 064: Faulty slave pumps fix Channel 065: Room compensation fix1 K +130 Channel 066: Heat stop status fix Channel 067: Heat stop blocking timer fix0 sec +134 Channel 068: Heat stop timer fix0 sec +136 Channel 069: Temp diff brine trig fix Channel 070: Auto. brinepump fix Channel 071: Controller error fix1 C +142 Channel 072: System setpoint Master fix1 C +144 Channel 073: Slavepump fix Channel 074: Mean fix1 C +148 Channel 075: Max fix1 C +150 Channel 076: Min fix1 C +152 Channel 077: Mean fix1 C +154 Channel 078: Max fix1 C +156 Channel 079: Min fix1 C +158 Channel 080: Integral value Master fix0 C min +160 Channel 081: A-Alarms fix Channel 082: B-Alarms fix Channel 083: Maste comm error fix Channel 084: Mean fix1 C +168 Channel 085: Max fix1 C +170 Channel 086: Min fix1 C +172 Channel 087: Mean fix1 C +174 Channel 088: Max fix1 C +176 Channel 089: Min fix1 C +178 Channel 090: Rest time block fix1 min +180 Channel 091: Start intervall time block fix1 min +182 Channel 092: Outdoor temp blocking extra heater fix Channel 093: HP limit fix Channel 094: Low brine in trig fix Channel 095: High brine in trig fix Channel 096: Low brine out trig fix Channel 097: Mean fix1 C +194 Channel 098: Max fix1 C +196 Channel 099: Min fix1 C +198 Channel 100: Shunt 1 status Option fix Channel 101: Shunt 1 temperature Option fix1 C +202 Channel 102: Shunt 1 controller error Option fix1 K +204 Channel 103: Shunt 1 valve Option fix0 % +206 Channel 104: Shunt 2 status Option fix Channel 105: Shunt 2 temperature Option fix1 C +210 Channel 106: Shunt 2 controller error Option fix1 K +212 Channel 107: Shunt 2 valve Option fix0 % +214 Channel 108: Shunt 3 status Option fix Channel 109: Shunt 3 temperature Option fix1 C +218 Channel 110: Shunt 3 controller error Option fix1 K +220 Channel 111: Shunt 3 valve Option fix0 %

12 , modbus protocol, Modbus protocol (rev 1).doc 12/ Channel 112: Shunt 4 status Option fix Channel 113: Shunt 4 temperature Option fix1 C +226 Channel 114: Shunt 4 controller error Option fix1 K +228 Channel 115: Shunt 4 valve Option fix0 % +230 Channel 116: Shunt 5 status Option fix Channel 117: Shunt 5 temperature Option fix1 C +234 Channel 118: Shunt 5 controller error Option fix1 K +236 Channel 119: Shunt 5 valve Option fix0 % +238 Channel 120: Shunt 6 status Option fix Channel 121: Shunt 6 temperature Option fix1 C +242 Channel 122: Shunt 6 controller error Option fix1 K +244 Channel 123: Shunt 6 valve Option fix0 % +246 Channel 124: Shunt 7 status Option fix Channel 125: Shunt 7 temperature Option fix1 C +250 Channel 126: Shunt 7 controller error Option fix1 K +252 Channel 127: Shunt 7 valve Option fix0 % +254 Channel 128: Shunt 8 status Option fix Channel 129: Shunt 8 temperature Option fix1 C +258 Channel 130: Shunt 8 controller error Option fix1 K +260 Channel 131: Shunt 8 valve Option fix0 % +262 Channel 132: WCS status Option fix Channel 133: WCS Temperature Option fix1 C +266 Channel 134: WCS Ctrl Error Option fix1 K +268 Channel 135: WCS ctrl signal Option fix0 % +270 Channel 136: Reserved Not used fix Channel 137: TWC status Option fix Channel 138: HW out temp Option fix1 C +276 Channel 139: HW return temp Option fix1 C +278 Channel 140: Reserved Not used fix Channel 141: Reserved Not used fix Channel 142: Reserved Not used fix Channel 143: Reserved Not used fix Channel 144: Reserved Not used fix Channel 145: Reserved Not used fix Channel 146: Timer blocking fix Channel 147: Operational state fix Channel 148: Hot water heater fix Channel 149: CM status fix Channel 150: Cooling tank temp Option fix0 C +300 Channel 151: Temp surplus cooler Option fix0 C +302 Channel 152: Temp cool. tank out Option fix0 C +304 Channel 153: Temp cooling circ. Option fix0 C +306 Channel 154: Shunt valve Option fix0 % +308 Channel 155: Cooling fans Option fix0 % +310 Channel 156: Passive cool. valve Option fix Channel 157: Active cool. valve Option fix Channel 158: Surplus circ. pump Option fix Channel 159: Surplus dump valve Option fix Channel 160: Cooling circ. pump Option fix Channel 161: Cooling integral Option fix Channel 162: Mean fix1 C +324 Channel 163: RH room temp Option fix0 C

13 , modbus protocol, Modbus protocol (rev 1).doc 13/ Channel 164: Relative humidity Option fix0 % +328 Channel 165: Dew point limit Option fix0 C +330 Channel 166: Blocking active c fix Channel 167: Blocking passive c fix Channel 168: Active cooling max pumps fix Channel 169: Controller deviation fix1 C +338 Channel 170: CM sensor 1 alarm trig fix Channel 171: CM sensor 2 alarm trig fix Channel 172: CM sensor 3 alarm trig fix Channel 173: CM sensor 4 alarm trig fix Channel 174: Mean fix1 C +348 Channel 175: Mean fix1 % +350 Channel 176: Mean fix1 C +352 Channel 177: Mean fix1 C min +354 Channel 178: Mean fix1 C +356 Channel 179: Max fix1 C +358 Channel 180: Min fix1 C +360 Channel 181: Mean fix1 C +362 Channel 182: Mean fix Channel 183: Mean fix1 C +366 Channel 184: Mean fix1 C +368 Channel 185: Max fix1 C +370 Channel 186: Min fix1 C +372 Channel 187: Mean fix1 % +374 Channel 188: Mean fix Channel 189: Mean fix Channel 190: Mean fix Channel 191: Mean fix Channel 192: Runtime compressor All fix2 h +384 Channel 193: Runtime hot water All fix2 h +386 Channel 194: Runtime extra heater DO Master fix2 h +388 Channel 195: Comp. runtime extra heater AO Master fix2 h +390 Channel 196: Mean fix1 C +392 Channel 197: Min fix1 C +394 Channel 198: TW Min fix Channel 199: VMin fix Channel 200: Reserved fix (300) DTAVALUE array RW fix# Data value ( Parameter ) +0 Data 001: Start HP1 fix0 +2 Data 002: Delta start HP fix0 +4 Data 003: Start extra heater fix0 +6 Data 004: Full extra heater fix0 +8 Data 005: Start limit fix0 +10 Data 006: Compressor delay fix0 +12 Data 007: Min stop time fix1 +14 Data 008: Min start interval fix0 +16 Data 009: Control press delay fix0 +18 Data 010: Outdoor blocking extraheater fix0 +20 Data 011: Hysteresis extraheater blocking fix0 +22 Data 012: Heat stop limit fix0

14 , modbus protocol, Modbus protocol (rev 1).doc 14/ Data 013: Heat stop hyst fix1 +26 Data 014: Activation time lim fix1 +28 Data 015: Deactiv. time lim fix1 +30 Data 016: Pump exercise interval fix1 +32 Data 017: Pump exercise time fix1 +34 Data 018: Integral max limit fix0 +36 Data 019: Integral dead zone fix0 +38 Data 020: Fast mode fix0 +40 Data 021: Room temp feedback fix0 +42 Data 022: Room set point fix1 +44 Data 023: Top Up function fix0 +46 Data 024: Top Up temp limit fix1 +48 Data 025: Delta limit next HP fix1 +50 Data 026: Extra heater type fix0 +52 Data 027: Heat up delay fix0 +54 Data 028: Burner off delay fix0 +56 Data 029: MaxRetTemp HW Delay fix0 +58 Data 030: Brine control fix0 +60 Data 031: Brine out min temp fix0 +62 Data 032: Brine in min temp fix0 +64 Data 033: Brine in max temp fix0 +66 Data 034: Time limit fix0 +68 Data 035: Pressure/Flow guard fix0 +70 Data 036: Operational mode fix0 +72 Data 037: Hot water production fix0 +74 Data 038: Hot water stop cond. fix0 +76 Data 039: Turn on limit fix0 +78 Data 040: Turn off limit fix0 +80 Data 041: Max system temp fix0 +82 Data 042: Min system temp fix0 +84 Data 043: Calendar offset fix0 +86 Data 044: Shunt 1 controller type fix0 +88 Data 045: Shunt 1 outdoor temp. stop fix0 +90 Data 046: Shunt 1 hysteresis fix1 +92 Data 047: Shunt 1 set point fix0 +94 Data 048: Shunt 1 P-area fix1 +96 Data 049: Shunt 1 I-time fix0 +98 Data 050: Shunt 1 pump exercise time fix Data 051: Shunt 2 controller type fix Data 052: Shunt 2 outdoor temp. stop fix Data 053: Shunt 2 hysteresis fix Data 054: Shunt 2 set point fix Data 055: Shunt 2 P-area fix Data 056: Shunt 2 I-time fix Data 057: Shunt 2 pump exercise time fix Data 058: Shunt 3 controller type fix Data 059: Shtun 3 outdoor temp. stop fix Data 060: Shunt 3 hysteresis fix Data 061: Shunt 3 set point fix Data 062: Shunt 3 P-Area fix Data 063: Shunt 3 I-time fix Data 064: Shunt 3 pump exercise time fix0

15 , modbus protocol, Modbus protocol (rev 1).doc 15/ Data 065: Shunt 4 controller type fix Data 066: Shunt 4 outdoor temp. stop fix Data 067: Shunt 4 hysteresis fix Data 068: Shunt 4 set point fix Data 069: Shunt 4 P-Area fix Data 070: Shunt 4 I-time fix Data 071: Shunt 4 pump exercise time fix Data 072: Shunt 5 controller type fix Data 073: Shunt 5 outdoor temp. stop fix Data 074: Shunt 5 hysteresis fix Data 075: Shunt 5 set point fix Data 076: Shunt 5 P-Area fix Data 077: Shunt 5 I-time fix Data 078: Shunt 5 Pump exercise time fix Data 079: Shunt 6 controller type fix Data 080: Shunt 6 outdoor temp. stop fix Data 081: Shunt 6 hysteresis fix Data 082: Shunt 6 set point fix Data 083: Shunt 6 P-Area fix Data 084: Shunt 6 I-time fix Data 085: Shunt 6 Pump exercise time fix Data 086: Shunt 7 controller type fix Data 087: Shunt 7 outdoor temp. stop fix Data 088: Shunt 7 hysteresis fix Data 089: Shunt 7 set point fix Data 090: Shunt 7 P-Area fix Data 091: Shunt 7 I-time fix Data 092: Shunt 7 pump exercise time fix Data 093: Shunt 8 controller type fix Data 094: Shunt 8 outdoor temp. stop fix Data 095: Shunt 8 hysteresis fix Data 096: Shunt 8 set point fix Data 097: Shunt 8 P-Area fix Data 098: Shunt 8 I-time fix Data 099: Shunt 8 pump exercise time fix Data 100: Lim force HP start fix Data 101: Lim force EH start fix Data 102: Curve offset fix Data 103: WCS Hot-Gas function fix Data 104: WCS setpoint fix Data 105: WCS P-area fix Data 106: WCS D-factor fix Data 107: WCS ctrl start delay fix Data 108: Start temp out fix Data 109: Stop temp out fix Data 110: Start temp return fix Data 111: Stop temp return fix Data 112: Start delay out fix Data 113: Start delay return fix Data 114: Tank set point fix Data 115: Circulation delay fix Data 116: Temp diff limit fix1

16 , modbus protocol, Modbus protocol (rev 1).doc 16/ Data 117: Start passive cool. fix Data 118: Start active cool. fix Data 119: Delta start HP fix Data 120: Passive block limit fix Data 121: Active block limit fix Data 122: Hysteresis passive fix Data 123: Hysteresis active fix Data 124: Config cooling fix Data 125: Cool circ. set point fix Data 126: P-area fix Data 127: I-time fix Data 128: Pump exerc. interval fix Data 129: Pump exerc. time fix Data 130: Dew point control fix Data 131: Stop limit fix Data 132: Cooler set point fix Data 133: P-area fix Data 134: I-time fix Data 135: Master mode fix Data 136: Min valve signal fix Data 137: Tempdiff brine fix Data 138: VVLUseInternalCtrl fix Data 139: VVLCtrlType fix Data 140: Legionella stop temp fix Data 141: CP while heating fix Data 142: Reserved Not used fix Data 143: Reserved Not used fix Data 144: Reserved Not used fix Data 145: Reserved Not used fix Data 146: Reserved Not used fix Data 147: [A_LANG] fix Data 148: Reserved Not used fix Data 149: Reserved Not used fix Data 150: [DEBUG] fix (140) ALARMTRIGLIMIT1 Alarm trig limit 1 array RW fix# +0 Alarm 01: High return temp All fix1 C +2 Alarm 02: Temp diff brine All fix0 +4 Alarm 03: Compressor current All fix0 +6 Alarm 04: Brine pump current All fix0 +8 Alarm 05: High pressure All fix0 +10 Alarm 06: Low pressure All fix0 +12 Alarm 07: Low brine flow Option fix0 +14 Alarm 08: Brine pressure Option fix0 +16 Alarm 09: Compressor heat All fix0 +18 Alarm 10: Hot gas temperature Not used fix0 +20 Alarm 11: Control pressostat All fix0 +22 Alarm 12: Sensor supply temp All fix1 ohm +24 Alarm 13: Sensor return temp All fix1 ohm +26 Alarm 14: Broken outdoor temp Master fix1 ohm +28 Alarm 15: Sensor hot water Master fix1 ohm

17 , modbus protocol, Modbus protocol (rev 1).doc 17/ Alarm 16: Sensor hot gas temp Option fix1 ohm +32 Alarm 17: Sensor brine in All fix1 ohm +34 Alarm 18: Sensor brine out All fix1 ohm +36 Alarm 19: Sensor prim. supply Master fix1 ohm +38 Alarm 20: HPC RM Communication All fix0 +40 Alarm 21: 24 VAC Power fail All fix0 +42 Alarm 22: WCS sensor Error Option fix0 +44 Alarm 23: WCS Controller error Option fix1 K +46 Alarm 24: Sensor Error TWC Option fix0 +48 Alarm 25: TWC out temp Option fix1 C +50 Alarm 26: TWC Return Temp Option fix1 C +52 Alarm 27: Ctrl err cooling c Option fix1 C +54 Alarm 28: Sensor cooling tank Option fix0 +56 Alarm 29: Sensor surplus cool Option fix0 +58 Alarm 30: Sensor cooling t out Option fix0 +60 Alarm 31: Sensor cooling circ. Option fix0 +62 Alarm 32: Reserved Not used fix0 +64 Alarm 33: Reserved Not used fix0 +66 Alarm 34: Shunt 1 sensor Option fix0 +68 Alarm 35: Shunt 1 ctrl err Option fix1 K +70 Alarm 36: Shunt 2 sensor Option fix0 +72 Alarm 37: Shunt 2 ctrl err Option fix1 K +74 Alarm 38: Shunt 3 sensor Option fix0 +76 Alarm 39: Shunt 3 ctrl err Option fix1 K +78 Alarm 40: Shunt 4 sensor Option fix0 +80 Alarm 41: Shunt 4 ctrl err Option fix1 K +82 Alarm 42: Shunt 5 sensor Option fix0 +84 Alarm 43: Shunt 5 ctrl err Option fix1 K +86 Alarm 44: Shunt 6 sensor Option fix0 +88 Alarm 45: Shunt 6 ctrl err Option fix1 K +90 Alarm 46: Shunt 7 sensor Option fix0 +92 Alarm 47: Shunt 7 ctrl err Option fix1 K +94 Alarm 48: Shunt 8 sensor Option fix0 +96 Alarm 49: Shunt 8 ctrl err Option fix1 K +98 Alarm 50: Communication Master Slave fix Alarm 51: High brine in temp Option fix Alarm 52: Low brine in temp Option fix Alarm 53: Low brine out temp Option fix Alarm 54: Slave pump missing Master fix Alarm 55: Reserved Not used fix Alarm 56: Reserved Not used fix Alarm 57: Reserved Not used fix Alarm 58: Reserved Not used fix Alarm 59: Reserved Not used fix Alarm 60: Reserved Not used fix Alarm 61: Reserved Not used fix Alarm 62: Reserved Not used fix Alarm 63: Reserved Not used fix Alarm 64: Reserved Not used fix Alarm 65: Reserved Not used fix Alarm 66: Reserved Not used fix Alarm 67: Reserved Not used fix0

18 , modbus protocol, Modbus protocol (rev 1).doc 18/ Alarm 68: Reserved Not used fix Alarm 69: Reserved Not used fix Alarm 70: Reserved Not used fix (140) ALARMTRIGLIMIT2 Alarm trig limit (70) ALARMTRIGFILTERON Alarm trig filter on (70) ALARMTRIGFILTEROFF Alarm trig filter off +0 array RW fix# See ALARMTRIGLIMIT1 array RW uint sec See ALARMSTATUS array RW uint sec See ALARMSTATUS (240) CURVEVALUEX Curve value, X-axis matrix +0 Curve 01 [10]: Control curve supply temp +0 ValueX ValueX ValueX ValueX ValueX ValueX ValueX ValueX ValueX ValueX Curve 02 [10]: Curve room temp feedback See Curve Curve 03 [10]: Shunt 1 curve setting See Curve Curve 04 [10]: Shunt 2 curve setting See Curve Curve 05 [10]: Shunt 3 curve setting See Curve Curve 06 [10]: Shunt 4 curve setting See Curve Curve 07 [10]: Shunt 5 curve setting See Curve Curve 08 [10]: Shunt 6 curve setting See Curve Curve 09 [10]: Shunt 7 curve setting See Curve Curve 10 [10]: Shunt 8 curve setting See Curve Curve 11 [10]: Reserved See Curve Curve 12 [10]: Reserved See Curve 01 RW fix (240) CURVEVALUEY Curve value, Y-axis +0 Curve 01 [10]: Control curve supply temp +0 ValueY ValueY ValueY ValueY ValueY ValueY ValueY ValueY 08 matrix RW fix5

19 , modbus protocol, Modbus protocol (rev 1).doc 19/ ValueY ValueY Curve 02 [10]: Curve room temp feedback See Curve Curve 03 [10]: Shunt 1 curve setting See Curve Curve 04 [10]: Shunt 2 curve setting See Curve Curve 05 [10]: Shunt 3 curve setting See Curve Curve 06 [10]: Shunt 4 curve setting See Curve Curve 07 [10]: Shunt 5 curve setting See Curve Curve 08 [10]: Shunt 6 curve setting See Curve Curve 09 [10]: Shunt 7 curve setting See Curve Curve 10 [10]: Shunt 8 curve setting See Curve Curve 11 [10]: Reserved See Curve Curve 12 [10]: Reserved See Curve 01

20 , modbus protocol, Modbus protocol (rev 1).doc 20/ Register addressing area (#04: "input register" parameters) Accessible via Modbus command #04. Identical to command #03, except that the memory map starts at instead of (See chapter 2.3). : Word addr should be decremented by when converting to protocol level address. (Protocol level addresses are identical between command #03 and #04).

GUIDE SPECIFICATIONS CONTROLS SPECIFICATIONS AND CONTROL POINT DATA MAP GENERAL DESCRIPTION

GUIDE SPECIFICATIONS CONTROLS SPECIFICATIONS AND CONTROL POINT DATA MAP GENERAL DESCRIPTION GUIDE SPECIFICATIONS 256920-UGS-A-0506 Simplicity Intelli-Comfort Optional Control in 3-25 Ton Packaged Units GENERAL DESCRIPTION CONTROLS SPECIFICATIONS AND CONTROL POINT DATA MAP Equipment with Simplicity

More information

PARAMETER LIST MICROFUSION

PARAMETER LIST MICROFUSION MICROFUSION PARAMETER LIST MicroFUSION controllers contain nonvolatile EEPROMs, and writing too frequently to an individual parameter may wear out the EEPROM and cause the controller to fail. Control Concepts

More information

InsuLogix T MODBUS Protocol Manual

InsuLogix T MODBUS Protocol Manual InsuLogix T MODBUS Protocol Manual Weidmann Technologies Deutschland GmbH Washingtonstraße 16/16a D-01139 Dresden, Germany Telefon: +49 (0)351 8435990 Version 1.1 InsuLogix T MODBUS Protocol Manual 1 Contents

More information

theben Fan Coil Actuator FCA 1 Fan Coil Actuator FCA 1 FCA Version: Jan-08 (Subject to change) Page 1 of 77

theben Fan Coil Actuator FCA 1 Fan Coil Actuator FCA 1 FCA Version: Jan-08 (Subject to change) Page 1 of 77 Fan Coil Actuator FCA 1 FCA 1 492 0 200 Version: Jan-08 (Subject to change) Page 1 of 77 Contents 1 Functional characteristics...4 1.1 Operation and display...5 1.2 Advantages of the FCA 1...5 1.2.1 Special

More information

REH FC-BMS3 Modbus Manual

REH FC-BMS3 Modbus Manual 67404 02-15 (HKT) REH FC-BMS3 Modbus Manual REH FC-BMS3 REH TA3 REH TD3 REH DT3 REH CT3 www.rehau.uk Modbus registers for REH FC-BMS3 software Version 5.0 and up Modbus SLAVE communication settings: 38.4

More information

10 Error Code List. Motion Control SW. NTI AG / LinMot User Manual Motion Control SW/ Page 87/94

10 Error Code List. Motion Control SW. NTI AG / LinMot User Manual Motion Control SW/ Page 87/94 Motion Control SW L i n M o t 10 List Code Description Actions to take 0000h No Error No error is pending. 0001h X4 Logic Supply Too Low The logic supply voltage has been too low. The minimal logic supply

More information

Technical manual GS 4x.00 knx application description air quality sensor

Technical manual GS 4x.00 knx application description air quality sensor Technical manual GS 4x.00 knx application description air quality sensor General Information The device fits for the particular use of the following tasks: monitoring of the air quality in building systems

More information

Installation and User Guide

Installation and User Guide Installation and User Guide User CTS 2 602 manual by Nilan VPM 360 Modbus Version: 3.00 19-10-2016 Software-version: 2.35 The following information describes how to connect to Nilan CTS 602 controls by

More information

Original instructions. SIRe Advanced. Modbus communication ... 2

Original instructions. SIRe Advanced. Modbus communication ... 2 Original instructions SIRe Advanced Modbus communication GB... 2 SIRe Modbus This manual describes how to connect SIRe Advanced with Modbus/RTU via RS485, the technical specification of the protocol in

More information

Application sheet for Green 300 series controllers. Title. Purpose. Application Controller Loop Configuration: Wiring: Explanation :

Application sheet for Green 300 series controllers. Title. Purpose. Application Controller Loop Configuration: Wiring: Explanation : Furnace temperature control with Solid State Relay(SSR) AP35001 Control a furnace temperature by using UT350 temperature controller. Model UT350 can drive SSR as an actuator directly. Electrical Furnace

More information

Fan Coil Actuator FCA 2

Fan Coil Actuator FCA 2 Fan Coil Actuator FCA 2 FCA 2 4920210 Updated: Feb-16 (subject to changes) Page 1 of 89 Contents 1 Function description... 4 1.1 Operation and display... 5 1.2 Advantages of the FCA 2... 6 1.2.1 Special

More information

Know your energy. Modbus Register Map EM etactica Power Meter

Know your energy. Modbus Register Map EM etactica Power Meter Know your energy Modbus Register Map EM etactica Power Meter Revision history Version Action Author Date 1.0 Initial document KP 25.08.2013 1.1 Document review, description and register update GP 26.08.2013

More information

Know your energy. Modbus Register Map EB etactica Power Bar

Know your energy. Modbus Register Map EB etactica Power Bar Know your energy Modbus Register Map EB etactica Power Bar Revision history Version Action Author Date 1.0 Initial document KP 25.08.2013 1.1 Document review, description and register update GP 26.08.2013

More information

NO WARRANTIES OF ANY KIND ARE IMPLIED ON THE INFORMATION CONTAINED IN THIS DOCUMENT.

NO WARRANTIES OF ANY KIND ARE IMPLIED ON THE INFORMATION CONTAINED IN THIS DOCUMENT. MODBUS/BECO2200-M3425A Communication Data Base for M-3425A Integrated Protection System Device I.D. = 150 Specifications presented herein are thought to be accurate at the time of publication but are subject

More information

Description of Communication Protocol ML V 3.0

Description of Communication Protocol ML V 3.0 PPS - 10 Description of Communication Protocol ML V 3.0 April 2016, Rev. 2.1 EXCETUTIVE SUMMARY The document contains a detailed description of the communication protocol adapter using the serial RS232/485

More information

Channels that are not occupied by temperature sensors, can take over alternative functions:

Channels that are not occupied by temperature sensors, can take over alternative functions: Firmware /TEMP12 The /TEMP12 firmware allows you to connect up to twelve digital temperature sensors (type Dallas DS18B20). Data from twelve channels is transferred to your PC via USB. ONE temperature

More information

FieldServer Driver FS Stulz

FieldServer Driver FS Stulz Driver Version: 1.00 Document Revision: 8 Description FieldServer Driver FS-8700-125 Stulz The Stulz driver allows the transfer of data from a Stulz device using the Stulz monitoring protocol version 1.7.

More information

BACNET LISTE - CORRIGO VERSJON 3.7

BACNET LISTE - CORRIGO VERSJON 3.7 BACNET LISTE - CORRIGO VERSJON 3.7 Object name Object Type Option Object Component Description Settable Instance Tag SupplySetpoint Y 30001 Setpoint supply air temperature when constant supply air temperature

More information

Series F4P Communications Guide

Series F4P Communications Guide Series F4P Communications Guide 1/4 DIN Temperature/Process Controller with Guided Setup 98 Registered Company Winona, Minnesota USA Watlow Controls 1241 Bundy Blvd., P.O. Box 5580, Winona, Minnesota USA

More information

Series Temperature Controller Instruction Sheet

Series Temperature Controller Instruction Sheet 2015/4/8 Series Temperature Controller Instruction Sheet Precaution DANGER! Caution! Electric Shock! Do not touch the AC terminals while the power is supplied to the controller to prevent electric shock.

More information

AQUAVAR CPC. Modbus Communications (Software Version 204 and later)* INSTRUCTION MANUAL ADAQCPC R1

AQUAVAR CPC. Modbus Communications (Software Version 204 and later)* INSTRUCTION MANUAL ADAQCPC R1 INSTRUCTION MANUAL ADAQCPC R1 AQUAVAR CPC Modbus Communications (Software Version 204 and later)* ADDENDUM TO THE INSTALLATION AND OPERATION MANUAL (IM167) * Aquavar CPC units with software 204 and later

More information

Use of the application program. Contents. instabus EIB Application program description. September S2 Room temperature controller

Use of the application program. Contents. instabus EIB Application program description. September S2 Room temperature controller Use of the application program Product family: Product type: Manufacturer: Heating, Air conditioning, Ventilation Thermostat Siemens Name: Room temperature controller IKE 250 DELTA millennium Order no.:

More information

InteliSys Air Fuel Ratio control software

InteliSys Air Fuel Ratio control software InteliSys Air Fuel Ratio control software IS-AFR-1.5 is based on standard InteliSys software of version 3.3 and previous IS-AFR-1.4 version. IS-AFR software is compatible with WinEdit 6.3. Corresponding

More information

Relay Driver Overview and Applications

Relay Driver Overview and Applications Relay Driver Overview and Applications Describes Basic and Advanced Settings for common and alternative/novel uses for the Relay driver (RD-1). Morningstar s Relay Driver (RD-1) is a fully programmable

More information

MODBUS for mamos analyser manual v

MODBUS for mamos analyser manual v sales@.com MODBUS for mamos analyser v.1.7.5 2017-05 1 / 27 sales@.com 1 Basic connection data... 2 2 General information about modbus... 3 3 Modbus connection... 4 4 Types of data available via modbus:...

More information

Use of the application program. Contents. 1. Functional description General. GAMMA instabus Application program description.

Use of the application program. Contents. 1. Functional description General. GAMMA instabus Application program description. Use of the application program Product family: Product type: Manufacturer: Heating, air conditioning, ventilation Thermostat Siemens Name: Temperature controller UP 237 DELTA i-system Order no.: 5WG1 237-2AB_1

More information

CT435. PC Board Mount Temperature Controller

CT435. PC Board Mount Temperature Controller CT435 PC Board Mount Temperature Controller Features Two RTD temperature sensor inputs: Pt100 or Pt1000. Wide temperature sensing range: -70 C to 650 C. All controller features are configurable through

More information

Use of the application program. Contents. 1. Functional description General. GAMMA instabus Application program description.

Use of the application program. Contents. 1. Functional description General. GAMMA instabus Application program description. Use of the application program Product family: Product type: Manufacturer: Heating, air conditioning, ventilation Thermostat Siemens Name: Temperature controller UP 237 DELTA i-system Order no.: 5WG1 237-2AB_1

More information

Modbus communication module for TCX2: AEX-MOD

Modbus communication module for TCX2: AEX-MOD Modbus communication module for TCX2: Communication Specification TCX2 is factory installed in TCX2 series controllers with -MOD suffix, and is also available separately upon request for customer installation

More information

ELECTRICAL VARIABLE ANALYZER RELAY EVAR

ELECTRICAL VARIABLE ANALYZER RELAY EVAR ELECTRICAL VARIABLE ANALYZER RELAY EVAR 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

More information

Universal Controller

Universal Controller Universal Controller Overview and Configuration Manual Overview... 1 About this Manual... 1 Introduction... 5 Hardware Overview... 5 Software Overview... 7 Interpreting Flow Diagrams... 8 Foreign Language

More information

VAV-Compact. Contents. Modbus General Notes 2 Modbus Register Overview 3 Modbus Register Description 4

VAV-Compact. Contents. Modbus General Notes 2 Modbus Register Overview 3 Modbus Register Description 4 Modbus-Register Description VAV-Compact VAV-Compact Contents Modbus General Notes 2 Modbus Register Overview 3 Modbus Register Description 4 www.belimo.com Modbus-Register VAV-Compact en v.0 05.208 Subject

More information

BusWorks 900EN Series Modbus TCP/IP 10/100M Industrial Ethernet I/O Modules

BusWorks 900EN Series Modbus TCP/IP 10/100M Industrial Ethernet I/O Modules BusWorks 900EN Series Modbus TCP/IP 10/100M Industrial Ethernet I/O Modules Six Differential Current Inputs Six Differential Voltage Inputs USER S MANUAL ACROMAG INCORPORATED Tel: (248) 295-0880 30765

More information

MODBUS RS485 SERIAL PROTOCOL

MODBUS RS485 SERIAL PROTOCOL MODBUS RS485 SERIAL PROTOCOL ED39DIN DMM3 VIP39DIN VIP396 SIRIO STAR3 STAR3din VERSION 09 JULY 2004 Modbus SIRIO.doc 09 JULY 2004 Pag.1/22 The STAR3, STAR3 din, VIP396, VIP39din, DMM3, SIRIO and ED39din

More information

Instruction manual. PR122-3/P + PR120/D-M PR332-3/P + PR330/D-M Modbus System Interface 1/50 LB-DTA L2572. Author Autore.

Instruction manual. PR122-3/P + PR120/D-M PR332-3/P + PR330/D-M Modbus System Interface 1/50 LB-DTA L2572. Author Autore. Instruction manual Modbus System Interface 1/50 Index Pag. 1. INTRODUCTION... 5 1.1 SCOPE... 5 1.2 APPLICABILITY... 5 1.3 ACRONYM AND DEFINITION... 5 1.3.1 Acronym... 5 1.3.2 Definitions... 6 1.4 BIBLIOGRAPY...

More information

DPX³ 250 Electronic 4P - ModbusTable LGR EN v1.01.xls

DPX³ 250 Electronic 4P - ModbusTable LGR EN v1.01.xls GENERAL MODBUS TABLE ORGANIZATION Starting of the Group s Starting of the Group s System Version (Release) System Version (Build) Group Name (Text) Group Code Group Complexity Group Version 1638 000 01

More information

ADAM-4022T Serial Base Dual Loops PID Controller User s Manual

ADAM-4022T Serial Base Dual Loops PID Controller User s Manual ADAM-422T Serial Base Dual Loops PID Controller User s Manual Warning Message : The ADAM-422T is recommended to be used in general purposed air conditioning application. When using this product in applications

More information

SE8600 Series User Interface Guide Rooftop Unit, Heat Pump and Indoor Air Quality Controller

SE8600 Series User Interface Guide Rooftop Unit, Heat Pump and Indoor Air Quality Controller SE8600 Series User Interface Guide Rooftop Unit, Heat Pump and Indoor Air Quality Controller Version 10 2 HMI Display The User HMI is configurable and allows display functions such as Date, Time, Outdoor

More information

Device connection and commissioning can only be carried out by qualified professionals. Always make the connections while the power is switched off.

Device connection and commissioning can only be carried out by qualified professionals. Always make the connections while the power is switched off. V1.2.0 (03.03.2014) 1 (21) This user guide is for controllers with the software version 1.2.0 or newer. WIRING Device connection and commissioning can only be carried out by qualified professionals. Always

More information

Corrigo E. Lon-interface variable list Covers all versions of Corrigo E.-LON from revision Revision: 8 Date:

Corrigo E. Lon-interface variable list Covers all versions of Corrigo E.-LON from revision Revision: 8 Date: Corrigo E Lon-interface variable list Covers all versions of Corrigo E.-LON from revision 1.2-1-0 Revision: 8 Date: 11-08-19 Copyright AB REGIN, Sweden, 2011 About the manual This document covers all versions

More information

Installation Guide. ECL Comfort 310, application A Table of Contents

Installation Guide. ECL Comfort 310, application A Table of Contents 1.0 Table of Contents 1.0 Table of Contents... 1 1.1 Important safety and product information..................... 2 2.0 Installation... 5 2.1 Before you start.....................................................

More information

ROTRONIC HygroClip Digital Input / Output

ROTRONIC HygroClip Digital Input / Output ROTRONIC HygroClip Digital Input / Output OEM customers that use the HygroClip have the choice of using either the analog humidity and temperature output signals or the digital signal input / output (DIO).

More information

Air Water Actuators xm(c)24a-mod xr24a-mod xv(k)24a-mod xf24a-mod xrf24a-mod

Air Water Actuators xm(c)24a-mod xr24a-mod xv(k)24a-mod xf24a-mod xrf24a-mod Modbus-Register Description Air Water Air Water Actuators xm(c)24a-mod xr24a-mod xv(k)24a-mod xf24a-mod xrf24a-mod Contents Modbus General Notes 2 Modbus Register Overview 3 Modbus Register Description

More information

SRC-110 Series Zone Controllers with Modbus RTU

SRC-110 Series Zone Controllers with Modbus RTU Product sheet CT2.142 Type SRC-110-MOD SRC-110 Series Zone Controllers with Modbus RTU The SRC-110 series controllers have been designed for zone heating and cooling control. The controllers have 3 analogue

More information

Data Acquisition Modules/ Distributed IO Modules

Data Acquisition Modules/ Distributed IO Modules User Manual Data Acquisition Modules/ Distributed IO Modules Future Design Controls, Inc. 7524 West 98 th Place / P.O. Box 1196 Bridgeview, IL 60455 888.751.5444 - Office: 888.307.8014 - Fax 866.342.5332

More information

Model Q46 Modbus Communications Manual

Model Q46 Modbus Communications Manual Model Q46 Modbus Communications Manual Home Office European Office Analytical Technology, Inc. ATI (UK) Limited 6 Iron Bridge Drive Unit 1 & 2 Gatehead Business Park Collegeville, PA19426 Delph New Road,

More information

E50 MODBUS POINT MAP

E50 MODBUS POINT MAP E50 MODBUS POINT MAP The E50C2 Full Data Set (FDS) features data outputs such as demand calculations, per phase VA and VAR, and VAh VARh accumulators. The E50C3 Data Logging model adds configuration registers

More information

Configuration of CPE 310-S and CPE 311-S transmitters by keypad

Configuration of CPE 310-S and CPE 311-S transmitters by keypad Configuration of CPE 310-S and CPE 311-S transmitters by keypad Table of contents 1. Introduction...5 1.1. Description of the transmitter...5 1.2. Description of the keys...5 1.3. Protection tips of the

More information

Instruction Manual D

Instruction Manual D Instruction Manual D12600-000 (CLT2000-000) D12600-001 (CLT2000-024) Table of Contents 1. General Description... 4 2. Specifications... 5 2.1 Electrical... 5 2.2 Physical... 6 3. Installation... 6 3.1

More information

ECM HIGH EFFICIENCY CIRCULATORS

ECM HIGH EFFICIENCY CIRCULATORS ECM HIGH EFFICIENCY CIRCULATORS WILO STRATOS Stratos Commercial high efficiency pumpp Main features & benefits 0-285 Gal/min flow 3 40 ft head 8 models (1.25, 1.5, 2 & 3 ) EC motor (permanent magnet rotor)

More information

NetBiter I/O Extender 4RO 6RTD 8DIO - DAIO User Manual Revision 1.00

NetBiter I/O Extender 4RO 6RTD 8DIO - DAIO User Manual Revision 1.00 NetBiter I/O Extender 4RO 6RTD 8DIO DAIO User Manual Revision 1.00 IntelliCom Innovation AB Linjegatan 3D SE302 50 Halmstad SWEDEN Phone +46 35 18 21 70 Fax +46 35 18 21 99 email info@intellicom.se www

More information

User manual. KNX MultiController DALI. Article number: 5410x / 5411x. function Technology AS

User manual. KNX MultiController DALI. Article number: 5410x / 5411x. function Technology AS User manual KNX MultiController DALI Article number: 5410x / 5411x Picture: KNX MultiController DALI with Reed panel and sensor function Technology AS Table of contents 1 KNX MULTICONTROLLER... 3 2 INTRODUCTION...

More information

Modbus Integration Integration for Modbus Functionality for VT8300 Series

Modbus Integration Integration for Modbus Functionality for VT8300 Series Modbus Integration Integration for Modbus Functionality for VT8300 Series Building Management System *For data visualization and analysis Modbus Controller VT8000 Series room controllers 2 TABLE OF CONTENTS

More information

User s Manual. Model US1000 Digital Indicating Controller Functions. IM 5D1A01-02E 2nd Edition IM 5D1A01-02E

User s Manual. Model US1000 Digital Indicating Controller Functions. IM 5D1A01-02E 2nd Edition IM 5D1A01-02E User s Manual Model US1000 Digital Indicating Controller Functions 2nd Edition Introduction This instruction manual describes the functions of the US1000 Digital Indicating Controller in detail. Read

More information

Series Valve Temperature Controller. Instruction Sheet

Series Valve Temperature Controller. Instruction Sheet 2013/10/03 Series Valve Temperature Controller Instruction Sheet Thank you very much for choosing Delta DTV series valve temperature controller. Please read this instruction sheet before using your DTV

More information

FCU-503 FAN COIL CONTROLLER WITH RDU-TOUCH INTERFACE

FCU-503 FAN COIL CONTROLLER WITH RDU-TOUCH INTERFACE FCU-503 FAN COIL CONTROLLER WITH RDU-TOUCH INTERFACE BACnet Enabled Description The FCU-503 is designed to provide complete control of fan coil units and / or underfloor heating circuits. The FCU-5 incorporates

More information

Please enter the identity code of your device here!

Please enter the identity code of your device here! Operating Instructions DULCOMETER D1C Part 2: Adjustment and Operation, Measured Variable Conductive Conductivity ProMinent D1C2-Leit.-001-GB Conductivity 100 µs/cm DULCOMETER STOP START Conductivity 100

More information

BACnet- MS/TP COMMUNICATION V

BACnet- MS/TP COMMUNICATION V - MS/TP COMMUNICATION V1.00.08.17 11.1 Introduction The VFD can be controlled and monitored through the BACnet MS/TP protocol over an RS-485 connection. The VFD operates as an MS/TP master device, which

More information

Interface Description A2000. Multifunctional Power Meter Communications Protocol per EN /1.15

Interface Description A2000. Multifunctional Power Meter Communications Protocol per EN /1.15 Interface Description A2000 Multifunctional Power Meter Communications Protocol per EN 60870 3-349-128-03 14/1.15 Contents Page 1 Overview of Telegrams (Commands) to the A2000 as per EN 60870... 4 2 Telegram

More information

Metasys Zoning Package Commissioning

Metasys Zoning Package Commissioning Technical Bulletin Issue Date 11/01/01 TECHNICAL BULLETIN Metasys Zoning Package Commissioning Metasys Zoning Package Commissioning...2 Introduction... 2 Key Concepts... 3 HVAC PRO Software...3 Configuration

More information

Mate Serial Communications Guide This guide is only relevant to Mate Code Revs. of 4.00 and greater

Mate Serial Communications Guide This guide is only relevant to Mate Code Revs. of 4.00 and greater Mate Serial Communications Guide This guide is only relevant to Mate Code Revs. of 4.00 and greater For additional information contact matedev@outbackpower.com Page 1 of 20 Revision History Revision 2.0:

More information

PQVO3Sd Short duration voltage variations

PQVO3Sd Short duration voltage variations 1MRS755448 Issued: 6/2005 Version: A/08.07.2005 PQVO3Sd Short duration voltage variations Data subject to change without notice Contents 1. Introduction... 3 1.1 Features... 3 1.2 Short duration voltage

More information

TA Instruments New Features in TAM Air Assistant TM and TAM Assistant TM Software

TA Instruments New Features in TAM Air Assistant TM and TAM Assistant TM Software TA Instruments in TAM Air Assistant TM and TAM Assistant TM Software Notice The material contained in this manual, and in the online help for the software used to support TA Instruments products, is believed

More information

Table of Contents. HWIO-Gateway User Manual

Table of Contents. HWIO-Gateway User Manual User Manual HWIO-Gateway INUX AB Katrinedalsg. 3, 504 51 Borås http://www.inux.se Copyright 2009 Uppdaterad 2010-01-12 Copyright 2009 INUX AB 1 Table of Contents 1. Product overview...3 2. License...3

More information

Modbus Register Map: InfraStruXure Symmetra 3-Phase Absolute Starting Register Number, (Decimal)

Modbus Register Map: InfraStruXure Symmetra 3-Phase Absolute Starting Register Number, (Decimal) Modbus Map: InfraStruXure Symmetra 3-Phase 990-3249 // Status Word 0 40000 0 8 Reserved R = UPS ready to provide power to the load upon return of normal line voltage or upon user command = State == Enable

More information

ME218C 2018 Communications Protocol. Revision # 1 5/7/18 Initial Draft /10/18 Meet w/ Karl /11/18 Update State Diagrams to Reflect Unpair

ME218C 2018 Communications Protocol. Revision # 1 5/7/18 Initial Draft /10/18 Meet w/ Karl /11/18 Update State Diagrams to Reflect Unpair ME218C 2018 Communications Protocol Revision # 1 5/7/18 Initial Draft 1.1 5/10/18 Meet w/ Karl 1.2 5/11/18 Update State Diagrams to Reflect Unpair 1.3 5/17/18 Standardizing Ship Pairing Addresses 1.4 5/28/18

More information

Modbus VAV Controller Configuration Properties

Modbus VAV Controller Configuration Properties Modbus VAV Controller Configuration Properties Modbus Object Type: Holding Registers Name Default Min Max Units Modbus Reg # Multiplier Focus Screen Modbus Notes DeviceType 0 0 0 None 1 1 Device (Not writable)

More information

DTH-14. High Accuracy Digital Temperature / Humidity Sensor. Summary. Applications. Data Sheet: DTH-14

DTH-14. High Accuracy Digital Temperature / Humidity Sensor. Summary. Applications. Data Sheet: DTH-14 DTH-14 High Accuracy Digital Temperature / Humidity Sensor Data Sheet: DTH-14 Rev 1. December 29, 2009 Temperature & humidity sensor Dewpoint Digital output Excellent long term stability 2-wire interface

More information

RAM 712 KNX room thermostat for surface-mounted and flush-mounted installation

RAM 712 KNX room thermostat for surface-mounted and flush-mounted installation RAM 712 KNX room thermostat for surface-mounted and flush-mounted installation RAM 712 712 9 200 Version: Dec-10 (subject to change) Page 1 of 65 Contents 1 Functional characteristics... 4 1.1 Operation...

More information

Model 12200A RCN PTAC/PTHP/FAN COIL CONTROL NODE OPERATION OUTPUTS G1 = FAN 1 G2 = FAN 2 G3 = FAN 3 O/B = Rev Valve W = HEAT Y = COMPRESSOR

Model 12200A RCN PTAC/PTHP/FAN COIL CONTROL NODE OPERATION OUTPUTS G1 = FAN 1 G2 = FAN 2 G3 = FAN 3 O/B = Rev Valve W = HEAT Y = COMPRESSOR Model 12200A RCN PTAC/PTHP/ COIL CONTROL NODE OPERATION OUTPUTS G1 = 1 G2 = 2 G3 = 3 O/B = Rev Valve W = HEAT Y = COMPRESSOR Operating Modes Summary (Refer to Logic Tables 1 5): 1. PTAC (Standard) Fan

More information

TC Electronic D-Two MIDI specification Document revision history: V D-Two release 1.01

TC Electronic D-Two MIDI specification Document revision history: V D-Two release 1.01 MIDI specification Document revision history: V1.00 2000-01-26 release 1.01 General message format: MIDI System Exclusive message start 3 byte manufacturer ID for System Exclusive device ID (User parameter)

More information

Specification GRUNER YSP 227C

Specification GRUNER YSP 227C Specification 227CM & CMX Written by: Dillinger Kevin Issue 1 Date: 26.03.2013 14:11:00 Side 1 of 35 TOC Seite 1. Additional information... 3 1.1. Preamble... 3 1.2. Version... 3 2. General Description...

More information

COMMUNICATION MODBUS PROTOCOL MFD44 NEMO-D4Le

COMMUNICATION MODBUS PROTOCOL MFD44 NEMO-D4Le COMMUNICATION MODBUS PROTOCOL MFD44 NEMO-D4Le PR129 20/10/2016 Pag. 1/21 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

Introduction to BAS Technology

Introduction to BAS Technology Introduction to BAS Technology Dave Kahn, P.E. Why Back to basics? Sometimes you get what you ask for resulting in: The perfect job OR Unhappy owners & occupants Unexpected network limitations Product

More information

User Manual. KNX MultiLight Dali. Article number: function Technology AS. Picture: KNX MultiLight products

User Manual. KNX MultiLight Dali. Article number: function Technology AS. Picture: KNX MultiLight products User Manual KNX MultiLight Dali Article number: 44002 Picture: KNX MultiLight products function Technology AS Table of Contents 1 THE KNX MULTILIGHT DALI... 3 2 INTRODUCTION... 3 3 START-UP AND GENERAL

More information

TC 204 Heating Controller

TC 204 Heating Controller TC 204 Heating Controller ver. 1.32-01 The TC204 is a multi-purpose heating controller with built-in programs for different types of heating systems. General Data Power requirement 24 volts ac, 2 va Inputs

More information

PID500 FULL FEATURED PID TEMPERATURE CONTROLLERS

PID500 FULL FEATURED PID TEMPERATURE CONTROLLERS PID500 FULL FEATURED PID TEMPERATURE CONTROLLERS DESCRIPTION FEATURES * Compact Size: 1/16 DIN * Dual LED displays for simultaneous indication of process temperature and set point (Lower display selectable

More information

4111 Usage Minutes 1 Integer RO Y - Minutes 0-59 Y Y YP

4111 Usage Minutes 1 Integer RO Y - Minutes 0-59 Y Y YP Table of Contents 2 Setup & Status Y Y Y Metering Y Y Y Min Max Y Y Y Demand Y Y Y IO Y Y Y Alarms N N Y Reset Commands Y Y Y DL System Y Y Y Notes Y Y Y 5 Setup & Status 24 Usage Hours 2 Float RO Y -

More information

VT8600 Series User Interface Guide Rooftop Unit, Heatpump and Indoor Air Quality Controller

VT8600 Series User Interface Guide Rooftop Unit, Heatpump and Indoor Air Quality Controller 1 VT8600 Series User Interface Guide Rooftop Unit, Heatpump and Indoor Air Quality Controller Version 11 2 Table of Contents Section 1 Introduction 4 User and Integrator Screens 4 Disclaimer 5 HMI Display

More information

Interface Description A2000. Multifunctional Power Meter Communications Protocol per DIN Draft /2.15

Interface Description A2000. Multifunctional Power Meter Communications Protocol per DIN Draft /2.15 Interface Description A2000 Multifunctional Power Meter Communications Protocol per DIN Draft 19244 3-349-125-03 14/2.15 1 Overview of Telegrams (Commands) to the A2000 per DIN Draft 19244...4 2 Telegram

More information

TLC3-BCR-U Series Thermostat

TLC3-BCR-U Series Thermostat OVERVIEW TLC3-BCR-U Series Thermostat Features Low power energy consumption: < 1W per unit Relays switching for outputs each up to 300W Temperature control for 2 or 4-pipe heating or cooling systems. Optional

More information

MV110-8AS. Analog input module 8 channel. User guide

MV110-8AS. Analog input module 8 channel. User guide MV110-8AS Analog input module 8 channel User guide MV110-8AS_2016.12_0226_EN All rights reserved Subject to technical changes and misprints Contents 1 Description... 2 1.1 Function... 2 1.2 RS485 network...

More information

Facebook Server Fan Speed Control Interface. Draft Version 0.1. Author: Jacob Na, Thermal Engineer, Facebook

Facebook Server Fan Speed Control Interface. Draft Version 0.1. Author: Jacob Na, Thermal Engineer, Facebook Facebook Server Fan Speed Control Interface Draft Version 0.1 Author: Jacob Na, Thermal Engineer, Facebook Contents Contents... 2 1 Overview... 3 1.1 License... 3 2 Fan Speed Control Table Update Methodology...

More information

CONFIGURATION HANDBOOK INL 100

CONFIGURATION HANDBOOK INL 100 Measurement and acquisition unit with isolated inputs and alarms relays CONFIGURATION HANDBOOK INL 100 INL 150 LOREME 12, rue des Potiers d'etain Actipole BORNY - B.P. 35014-57071 METZ CEDEX 3 Phone 03.87.76.32.51

More information

LabCon User Manual. Multi-Purpose Temperature Controller Temp High SP

LabCon User Manual. Multi-Purpose Temperature Controller Temp High SP LabCon Basic Multi-Purpose Temperature Controller 42.5 Temp High SP C 42.5 CONTENTS 1. FRONT PANEL LAYOUT 1 2. BASIC OPERATION 2 3. OPERATOR PARAMETERS 5 4. SUPERVISORY PARAMETERS 7 5. FACTORY PARAMETER

More information

Introduction To Temperature Controllers

Introduction To Temperature Controllers Introduction To Temperature Controllers The Miniature CN77000 is a full featured microprocessor-based controller in a 1/16 DIN package. How Can I Control My Process Temperature Accurately and Reliably?

More information

TAC5 Regulation + SAT KNX Module

TAC5 Regulation + SAT KNX Module TAC5 Regulation + SAT KNX Module TAC5 Regulation + SAT KNX Module Installation and user s manual TABLE OF CONTENTS 1. FUNCTIONALITIES OF THE REGULATION... 5 2. Operating PRINCIPLE... 6 2.1 KNX Network...

More information

- SMART TUNE- PID CONTROL - UNIVERSAL, 3 WIRE- TC, RTD AND LINEAR INPUT - AUX- REMOTE SET POINT/ TRIM INPUT - 2x ISOLATED CONTROL AND RETRANSMISSION

- SMART TUNE- PID CONTROL - UNIVERSAL, 3 WIRE- TC, RTD AND LINEAR INPUT - AUX- REMOTE SET POINT/ TRIM INPUT - 2x ISOLATED CONTROL AND RETRANSMISSION ADVANCED - CONTROLLERS - SMART TUNE- PID CONTROL - UNIVERSAL, 3 WIRE- TC, RTD AND INPUT - AUX- REMOTE SET POINT/ TRIM INPUT - 2x ISOLATED CONTROL AND RETRANSMISSION (ma) OUTPUTS - 4x EVENT OR ALARM OUTPUTS

More information

TAS APFC Controller / Load Managers with MOD-BUS Interface

TAS APFC Controller / Load Managers with MOD-BUS Interface TAS APFC Controller / Load Managers with MOD-BUS Interface Designed & Prepared by TAS PowerTek Pvt. Ltd., W-61, MIDC Ambad, Nasik-422010, India. Updated on: 4th June 2017, Sunday. Data Parameter Field

More information

ioselect Z-NET Z-4RTD 4 Channel RTD Input Module

ioselect Z-NET Z-4RTD 4 Channel RTD Input Module 4 Channel nput Module : PT00, PT000, PT500 & N00: 2, 3 & 4 wire 500 V solation, 6-way Modbus Communications Adjustable Sampling Time Accuracy to 0.2 C Configuration and Setup Software EC 63 Flexible Power

More information

ISAscale // High precision measurement. IVT-MODular CAN. Index

ISAscale // High precision measurement. IVT-MODular CAN. Index CAN Index. Introduction. Application. Additional features 4. Functionality description 5 5. Measurement description 9 6. Technical data 4 7. CAN-Protocol 8 8. Startup 8 9. Qualification 8. Introduction

More information

Revision 1. March 21, ADC Operation Manual N 11 th St San Jose CA

Revision 1. March 21, ADC Operation Manual N 11 th St San Jose CA Revision 1 March 21, 2017 ADC Operation Manual www.mountztorque.com - 1080 N 11 th St San Jose CA 95112 408.292.2214 1 Index 1. Installation 3 1.1 Required PC specification 3 1.2 Software 3 2. Operation

More information

Low Power 3D Hall Sensor with I2C Interface and Wake Up Function

Low Power 3D Hall Sensor with I2C Interface and Wake Up Function Low Power 3D Hall Sensor with I2C Interface and Wake Up Function User Manual About this document Scope and purpose This document provides product information and descriptions regarding: I 2 C Registers

More information

PBM230 series Digital barometer

PBM230 series Digital barometer PBM230 series Digital barometer Features Supply voltage: 1.7 to 5.5V(V DD ) 1.2 to 5.5V(V DDIO ) 300 to 1100 hpa pressure range 8cm altitude resolution (RMS) 2.2ms fastest conversion time Standby current

More information

AirChip3000. Description and Main Functions

AirChip3000. Description and Main Functions Page 1 of 17 Page 2 of 17 Table of contents 1 OVERVIEW... 3 1.1 Introducing the... 3 1.2 Function overview... 4 1.3 Relevance of the functions... 4 1.4 Access to the configuration and user functions...

More information

P-SERIES VFD 1-40HP (200~230VAC), 1-400HP (380~480VAC),3Ø Dual Rated for Constant & Variable Torque Integrated PID Control

P-SERIES VFD 1-40HP (200~230VAC), 1-400HP (380~480VAC),3Ø Dual Rated for Constant & Variable Torque Integrated PID Control P-SERIES VFD 1-40HP (200~230VAC), 1-400HP (380~480VAC),3Ø Dual Rated for Constant & Variable Torque Integrated PID Control NEW FIRMWARE MAKES SETUP A SNAP Application based commissioning allows parameters

More information

NF1011 Frequency Translator and Jitter Attenuator

NF1011 Frequency Translator and Jitter Attenuator NF1011 Frequency Translator and Jitter Attenuator 2111 Comprehensive Drive Aurora, Illinois 60505 Phone: 630-851- 4722 Fax: 630-851- 5040 www.conwin.com P R O D U C T General Description The NF1011 is

More information

Configuration of C310 multifunction transmitters by keypad

Configuration of C310 multifunction transmitters by keypad Configuration of C310 multifunction transmitters by keypad Table of contents 1. Introduction...5 1.1. Description of the transmitter...5 1.2. Description of the keys...5 1.3. Protection tips of the sensor...6

More information

User manual V RMD channel transmitter

User manual V RMD channel transmitter User manual 18.3.2016 V1.0-1.7 RMD681 8 channel transmitter DESCRIPTION RMD681 is an 8 channel measurement unit for temperature sensors and other electrical inputs. The unit has both analog and serial

More information

Installation Guide. ECL Comfort 310, application A Table of Contents

Installation Guide. ECL Comfort 310, application A Table of Contents 1.0 Table of Contents 1.0 Table of Contents... 1 1.1 Important safety and product information..................... 2 2.0 Installation... 6 2.1 Before you start.....................................................

More information