To integrate an LonWorks adapter using non LNS-based integration software, Itho will supply an interfacefile (XIF-file).

Size: px
Start display at page:

Download "To integrate an LonWorks adapter using non LNS-based integration software, Itho will supply an interfacefile (XIF-file)."

Transcription

1 Startup Guide LonWorks Adaptor Table of content Preface... 2 Conditions... 2 Installing the Software... 2 Installing AmVent for LNS Software... 2 Using non LNS-Based LON Software... 2 Base Setup with Itho DCW using LonMaker... 2 nvischeduler... 3 nvisetptairflow... 4 nvisetpttemp... 4 nvibypassopm... 5 Disabling Automatic Reset to Default Operating Mode... 6 Setting Max Fan Voltage... 7 Base Setup with Itho DCW in a non LNS tool... 8 nvischeduler... 8 nvisetptairflow... 9 nvisetpttemp... 9 nvibypassopm... 9 Disabling Automatic Reset to Default Operation Mode Setting Max Fan Voltage AmVent User Defined Network Variable- and Configuration Parameter-Types

2 Preface This guide should be regarded a supplement to the document, Itho Lon module for DCW, which is the complete documentation for the LonWorks adapter interface. Conditions By supplying an Itho ventilation unit with a LonWorks adapter instead of the display controller, all control functionalities are transferred from display controller to the LonWorks adapter. Different from a traditional LonWorks Gateway, which typically transfers signals between a dedicated controller and a LonWorks control network, the LonWorks adapter is a LON based control of the ventilation unit. It is recommendable to have the LonWorks integration carried out by a person with the necessary knowledge of LON technology. A LNS -based tool is preferable, but not strictly necessary. Installing the Software As the LonMark interface for the LonWorks adapter contains user defined network variable types (UNVTs), and user defined configuration variable types (UCPTs), using LNS based integration software (e.g. LonMaker ) is recommended where producer specific type files can be used. To integrate an LonWorks adapter, using LNS based integration software (e.g. LonMaker ), Itho will supply type- and interface-files. The files are given as a Windows -setup which must run on the PC from where the integration is made. To integrate an LonWorks adapter using non LNS-based integration software, Itho will supply an interfacefile (XIF-file). Installing AmVent for LNS Software Open AmVent_install.zip and run AmVent_install.exe on the Windows PC where the LNS based integration software has been installed. Interface- and type-files are automatically stored in the correct folders in the LonWorks folder. The LonMark resource file library is automatically updated. Subsequently the LonMaker version 3.2 or higher will show the UNVTs and the UCPTs correctly in the LonMaker browser. For older LonMaker versions it might be necessary to use AmVent Visio shape, when the function block for the LonWorks Adapter is added to the LonMaker drawing. This way the UNVTs and the UCPTs will show correctly in the LonMaker browser. Visio stencil with AmVent Fb is accessible in the folder C:\LonWorks\LonMaker\Visio\Airmaster. Using non LNS-Based LON Software Use AmVent.XIF according to the guide of the LON software in question. To read user defined LonMark types see type definition at the end of this document. Base Setup with Itho DCW using LonMaker Below is shown how to establish a minimum network setup for LON - control of an Itho ventilation unit using the integration tool LonMaker. 2

3 This serves as an example. For alternatives please read LON systeemhandleiding. To control an Itho DCW the following must be established at a sub central or a main central on the following outgoing network variables: To control operating mode establish NVO type SNVT_tod_event To control airflow set point establish NVO type SNVT_lev_percent To control temperature set point establish NVO type SNVT_temp_p To control the bypass damper establish NVO type SNVT_switch Connections are made in LonMaker as shown below: Drawing 1 Handling the variables: nvischeduler If wanted this variable can be changed in type, but for the sake of simplicity we will keep it in its original type SNVT_tod_event. The LonMark type SNVT_tod_event is an array of variables and to be formatted like: typedef struct { occup_t current_state; occup_t next_state; unsigned long time_to_next_state; } SNVT_tod_event where the type occup_t can assume the values: -1 OC_NUL 0 OC_OCCUPIED 1 OC_UNOCCUPIED 2 OC_BYPASS 3 OC_STANDBY When controlling the Itho DCW with the variable time_to_next_state is set to 0, and both current_state as well as next_state for one of the following 4 commands: 0 (OC_OCCUPIED) 1 (OC_UNOCCUPIED) 2 (OC_BYPASS) 3 (OC_STANDBY) 3

4 The Itho DCW must be told how to react to the above mentioned commands, which is done in the configuration table: SCPTvalueDefinition in the variable nviopmode. When the value 0 (OC_OCCUPIED) is sent, the Itho DCW will react as set in table index (0). When the value 1 (OC_UNOCCUPIED) is sent, the Itho DCW will react as set in table index (1), etc. In the LonMaker Browser the SCPTvalueDefinition table is set as shown in drawing 2. Drawing 2 In the example you can see how to control the Itho DCW to Normal ON by sending value 0(OC_OCCUPIED), and to OFF by sending the value 1(OC_UNOCCUPIED) nvisetptairflow This variable sets the wanted airflow of an Itho DCW in normal (occupied) mode. The variable type is SNVT_lev_percent and is shown in percentage (0-100%). nvisetpttemp This variable sets the desired air inlet temperature of an Itho DCW in normal (occupied) mode. The variable type is SNVT_temp_p and shows in degrees Celsius (8,00-30,00 C). 4

5 nvibypassopm If the Itho DCW unit supports Bypass (indicated by the value BOOL_TRUE in UCPTsysConfigStatus:bypassInstalled (see drawing 3)), this functionality can be controlled by nvibypassopm. Drawing 3 The variable type of nvibypassopm is SNVT_switch and is formatted like: typedef struct { unsigned value; signed state; } SNVT_switch; where the type value is a percentage of 0,5% (0,0-100,0%), and the type state is a numeric value which can assume the values: -1 OC_NUL 0 OFF 1 ON To activate bypass send: Value=100,0 State=1 Not to activate bypass send: Value=0,0 State=0 - to the network variable nvibypassopm. We recommend that Bypass always be activated. 5

6 Disabling Automatic Reset to Default Operating Mode All NV inputs in connection with the Ventilation Unit functionality block automatically falls back to default parameters if the NVI is not updated within a configured maxreceivetime. So if a network variable is not updated within the given interval, the control will act from a default parameter. In order to disable this functionality, SCPTmaxRecvTime must be configured for every NVinput to a 0 value, which disables the functionality. This is done in the LonMaker -browser: Set the configuration value SCPTmaxRcvTime for each of the network variables: nvibypassopm nviopmode nvischeduler nvisetptairflow nvisetpttemp - - to value 0,0. 6

7 Setting Max Fan Voltage The following values are unit specific and must be changed to exactly suit the unit in question: - Max reference signal to the inlet fan UCPTmaxInletFanV (default 50%). - Max reference signal to the outlet fan UCPTmaxOutletFanV (default 65%). It shows as a percentage of 10V, i.e. 73% equals 7,3V. The values to be inserted are given by the dealer. The settings are made in the LonMaker Browser: 7

8 Base Setup with Itho DCW in a non LNS tool The text below shows how to establish a minimum network setup for a LON - control for an Itho DCW ventilation unit. This serves as an example. For alternatives, please read the LON systeemhandleiding. To control an Itho DCW the following must be established at a sub central or a main central on the following outgoing network variables: To control operating mode establish an NVO type SNVT_tod_event To control airflow set point establish an NVO type SNVT_lev_percent To control temperature set point establish an NVO type SNVT_temp_p To control bypass damper establish an NVO type SNVT_switch The network variables are tied to the Itho DCW Airmaster AmVent node, or led (Network variable updates) from the BMS system to the Itho DCW Airmaster AmVent node. Handling the variables: nvischeduler This variabel is from the type SNVT_tod_event. The LonMark type SNVT_tod_event is formatted the following way: typedef struct { occup_t current_state; occup_t next_state; unsigned long time_to_next_state; } SNVT_tod_event where the type occup_t can assume the values: -1 OC_NUL 0 OC_OCCUPIED 1 OC_UNOCCUPIED 2 OC_BYPASS 3 OC_STANDBY When controlling the Itho DCW with the variable, time_to_next_state is set for 0, and both current_state as well as next_state for one of the following 4 commands: 0 (OC_OCCUPIED) 1 (OC_UNOCCUPIED) 2 (OC_BYPASS) 3 (OC_STANDBY) Itho DCW must be told how to react to abovementioned commands, which is done in the table for value of configuration: SCPTvalueDefinition in the variable nviopmode. When the value 0 (OC_OCCUPIED) is sent, the Itho DCW will react as set in table index (0). When the value 1 (OC_UNOCCUPIED) is sent, the Itho DCW will react as set in table (1), etc. The values in the configuration variable SCPTvalueDefinition are set to the following values: {0x00, 0x03, 0x03, 0x03, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF}. In this particular example you can thereby control Itho DCW to Normal ON by sending value 0(OC_OCCUPIED), and to OFF by sending the value 1(OC_UNOCCUPIED). 8

9 nvisetptairflow This variable sets the wanted airflow of an Itho DCW in normal (occupied) mode. The variable type is SNVT_lev_percent and is shown in percentage (0-100%). nvisetpttemp This variable sets the wanted air inlet temperature of an Itho DCW in normal (occupied) mode. The variable type is SNVT_temp_p and shows in degrees Celsius (8,00-30,00 C). nvibypassopm If the Itho DCW unit supports Bypass (indicated by the value 1 in UCPTsysConfigStatus: field2 (x,x,x,x,x,x,x)), this functionality can be controlled by nvibypassopm. The variable type of nvibypassopm is SNVT_switch and is formatted the following way: typedef struct { unsigned value; signed state; } SNVT_switch; where the type value is a percentage value of 0,5% (0,0-100,0%), and the type state is a numeric value which can assume the values: -1 OC_NUL 0 OFF 1 ON To activate bypass send: Value=100,0 State=1 To deactivate bypass send: Value=0,0 State=0 - to the network variable nvibypassopm. It is recommended that the Bypass always is activated. 9

10 Disabling Automatic Reset to Default Operation Mode. All NV inputs in connection with the VentilationUnit functionality block automatically falls back to default parameters if the NVI is not updated within a configured maxreceivetime. So if a network variable is not updated within the given interval, the control will act from a default parameter. In order to disable this functionality, SCPTmaxRecvTime must be configured for every NVinput to a 0 value, which disables the functionality. Set the configuration value SCPTmaxRcvTime for each of the network variables: nvibypassopm nviopmode nvischeduler nvisetptairflow nvisetpttemp - - to value 0,0. Setting Max Fan Voltage The following values are unit specific and must be changed to exactly suit the unit in question: - Max reference signal to the inlet fan UCPTmaxInletFanV (default 50%). - Max reference signal to the outlet fan UCPTmaxOutletFanV (default 65%). It shows as a percentage of 10V, i.e. 73% equals 7,3V. The values to be inserted are given by the dealer. 10

11 AmVent User Defined Network Variable- and Configuration Parameter-Types --- UNVT_op_mode enum vent_opmode_t; typedef enum vent_opmode_t { /* 0 */ OM_NORMAL_OCC = 0, /* 1 */ OM_NORMAL_UNOCC = 1, /* 2 */ OM_NIGHT_COOLING = 2, /* 3 */ OM_OFF = 3, /* 4 */ OM_MAN = 4, /* 5 */ OM_OCC_SENS = 5, /* 6 */ OM_CO2 = 6, /* 7 */ OM_TEMP_OCC = 7, /* 8 */ OM_TEMP_UNOCC = 8, /* 9 */ OM_HUMIDITY = 9, /* 10 */ OM_COMB_OCC_SENS = 10, /* 11 */ OM_COMB_OCC = 11, /* 12 */ OM_COMB_UNOCC = 12, /* 127 */ OM_FALL_BACK = 127, /* -1 */ OM_NUL = -1 } vent_opmode_t; --- UNVT_fan_speed Typedef struct { }UNVT_fan_speed; SNVT_switch fan[2]; --- UCPTairflowRelUNOCC SNVT_lev_percent; --- UCPTnightCoolAirflow SNVT_lev_percent; --- UCPTtempAdjustUNOCC SNVT_temp_diff_p; --- UCPTnightCoolTemp SNVT_temp_p; --- UCPTbypassEnTdiff SNVT_temp_diff_p; --- UCPTtempTrigOCC SNVT_temp_p; --- UCPTtempTrigUNOCC SNVT_temp_p; --- UCPTrhHysteresis SNVT_lev_percent; --- UCPTsysConfigStatus Typedef struct { Boolean_t statusvalid; Boolean_t bypassinstalled; Unsigned short mainctrlmajorver; Unsigned short mainctrlminorver; Unsigned short ficmajorver; Unsigned short ficminorver; Unsigned short fipver; } UCPT sysconfigstatus; --- UCPTmaxInletFanV SNVT_lev_percent; --- UCPTmaxIOutletFanV SNVT_lev_percent; --- UCPTmaxCO2 SNVT_ppm; 11

Itho Lon module for DCW

Itho Lon module for DCW Itho Lon module for DCW Functional Profile: Ventilation Unit UFPTventilationUnit Ventilation Unit: 20100 Version 1.0 August 2008 Compliant with LonMark Application- Layer Interoperability Guidelines Ver.

More information

CORRIGO R10. LonMark Functional Profile: Chilled Ceiling Controller Corrigo R10 LonWorks Interface: LonMark Chilled Ceiling Controller

CORRIGO R10. LonMark Functional Profile: Chilled Ceiling Controller Corrigo R10 LonWorks Interface: LonMark Chilled Ceiling Controller CORRIGO R10 LonMark Functional Profile: Chilled Ceiling Controller 8070 1 P0109 TLM Corrigo R10 Manual.doc 2 P0109 TLM Corrigo R10 Manual.doc Content CONTENT...3 OVERVIEW...5 R10-LON FUNCTIONAL DESCRIPTION...5

More information

Scheduler Configuration Tool User Guide v3.0

Scheduler Configuration Tool User Guide v3.0 Scheduler Configuration Tool User Guide v3.0 Document Revision History: 1. Revision 1.0 - Initial release January 2004 2. Revision 2.0 May 2007 Added Lonwatcher start up section Added EC-Net AX Pro start

More information

KITS AND ACCESSORIES. Prodigy LonTalk MODULE KIT INSTALLATION INSTRUCTIONS FOR LONTALK MODULE KIT (54W27) USED WITH ENERGENCE ROOFTOP UNITS.

KITS AND ACCESSORIES. Prodigy LonTalk MODULE KIT INSTALLATION INSTRUCTIONS FOR LONTALK MODULE KIT (54W27) USED WITH ENERGENCE ROOFTOP UNITS. 2011 Lennox Industries Inc. Dallas, Texas, USA KITS AND ACCESSORIES 506693 01 07/11 Supersedes 04/11 INSTALLATION INSTRUCTIONS FOR LONTALK MODULE KIT (54W27) USED WITH ENERGENCE ROOFTOP UNITS Litho U.S.A.

More information

Software Application wrf08_03 (Lighting, Blinds, Air-Conditioning Control) For model WRF08 T6 T8 T5 T6 T7 T8. Messwert Value

Software Application wrf08_03 (Lighting, Blinds, Air-Conditioning Control) For model WRF08 T6 T8 T5 T6 T7 T8. Messwert Value wrf08_03 Software Application wrf08_03 (Lighting, Blinds, Air-Conditioning Control) For model WRF08 The multi-function room operating panel WRF08 is designed for temperature detection and integrated control

More information

SlotServer Supplement

SlotServer Supplement SlotServer Supplement LonWorks Open Profile APPLICABILITY & EFFECTIVITY This manual is a supplement to the SlotServer Startup Guide and Configuration Manual and provides instructions for the following

More information

MODEL 2000T Initial Draft

MODEL 2000T Initial Draft TEMPERATURE DISPLAY AND COMMAND MODULE On-board temperature sensor. Mounts on any standard single-gang wiring conduit box. Compact, thin and stylish design. Only 2.8 W x 4.55 H x 0.79 D Sensing element

More information

M7410G LINEAR VALVE ACTUATOR WITH LON CAPABILITIES AND OPTIONAL PI-CONTROL

M7410G LINEAR VALVE ACTUATOR WITH LON CAPABILITIES AND OPTIONAL PI-CONTROL M7410G LINEAR VALVE ACTUATOR WITH LON CAPABILITIES AND OPTIONAL PI-CONTROL CONTENTS APPLICATION... 2 FEATURES... 2 DEVICE SPECIFICATIONS... 3 OPERATION... 3 VERSIONS... 3 PLUG-INS, XIF FILES AND DRF FILES...

More information

AIRLINQ - DIGITAL BMS. Information Guide LON module

AIRLINQ - DIGITAL BMS. Information Guide LON module AIRLINQ - DIGITAL BMS 1 Information Guide LON module This manual is only for information. NB! For Programming the Airlinq BMS module for LONWORKS you have to use the manual BMS module for LONWORKS. Airlinq

More information

MicroTech 2000 Water Source Heat Pump Unit Controller Protocol Information

MicroTech 2000 Water Source Heat Pump Unit Controller Protocol Information Engineering Data ED 15054-3 Group: Controls Part Number: ED15054 Date: October 2012 Supersedes: ED15054-2 MicroTech 2000 Water Source Heat Pump Unit Controller Protocol Information LonWorks Networks Table

More information

R3-NL1 LONWORKS INTERFACE MODULE BEFORE USE... INSTALLATION POINTS OF CAUTION INSTRUCTION MANUAL. R3-nL1 MODEL

R3-NL1 LONWORKS INTERFACE MODULE BEFORE USE... INSTALLATION POINTS OF CAUTION INSTRUCTION MANUAL. R3-nL1 MODEL INSTRUCTION MANUAL LONWORKS INTERFACE MODULE (analog I/O points, discrete I/O 8 points) MODEL R-nL R-NL BEFORE USE... Thank you for choosing M-System. Before use, please check contents of the package you

More information

LonWorks Integration Manual ITG-VT72_73-PIR-LON-E07 ( R7 Issue Date: February 3, 2009)

LonWorks Integration Manual ITG-VT72_73-PIR-LON-E07 ( R7 Issue Date: February 3, 2009) PIR Ready VT72xx & VT73xx Series 24 Vac Fan Coil and Zoning Thermostats For Commercial and Lodging HVAC Applications LonWorks Integration Manual ITG-VT72_73-PIR-LON-E07 (028-6008 R7 Issue Date: February

More information

LonWorks Integration Manual ITG-VT(R)72_73-PIR-LON-E08 ( R8 Issue Date: January 17, 2013)

LonWorks Integration Manual ITG-VT(R)72_73-PIR-LON-E08 ( R8 Issue Date: January 17, 2013) PIR Ready VT72xx & VT(R)73xx Series 24 Vac Fan Coil and Zoning Controllers For Commercial and Lodging HVAC Applications LonWorks Integration Manual ITG-VT(R)72_73-PIR-LON-E08 (028-6008 R8 Issue Date: January

More information

DOMOTICA ED EDIFICI INTELLIGENTI UNIVERSITA DI URBINO

DOMOTICA ED EDIFICI INTELLIGENTI UNIVERSITA DI URBINO Corso DOMOTICA ED EDIFICI INTELLIGENTI UNIVERSITA DI URBINO Docente: Ing. Luca Romanelli Mail: romanelli@baxsrl.com Protocolli LonWorks Domotica ed edifici intelligenti Università di Urbino 1 Concept Definitions

More information

Installation- & user instructions

Installation- & user instructions Installation- & user instructions for NILAN LON module for CTS6000 Valid for: CTS6000, - SW 1.0064. Version 1.04, 08.12.2011 Contents Contents... 2 Figure table... 3 General description of NilLON... 4

More information

Software description. e.control lumina T6 Binary Input Module (flush mounting) SC EC_13.* Page 1. Software description.

Software description. e.control lumina T6 Binary Input Module (flush mounting) SC EC_13.* Page 1. Software description. Software description lumina T6 Binary Input Module (flush mounting) SC 006EC_3.* Software description This document describes the behaviour and parameterisation of the software application listed below.

More information

R3-NL2 INSTALLATION BEFORE USE... POINTS OF CAUTION INSTRUCTION MANUAL LONWORKS INTERFACE MODULE MODEL. (I/O 56 points)

R3-NL2 INSTALLATION BEFORE USE... POINTS OF CAUTION INSTRUCTION MANUAL LONWORKS INTERFACE MODULE MODEL. (I/O 56 points) INSTRUCTION MANUAL LONWORKS INTERFACE MODULE (I/O 6 points) MODEL R-NL BEFORE USE... Thank you for choosing M-System. Before use, please check contents of the package you received as outlined below. If

More information

Expansion modules. Type EM-LON. LonWorks interface for EASYLAB controllers and adapter. 03/2017 DE/en PD LON 1

Expansion modules. Type EM-LON. LonWorks interface for EASYLAB controllers and adapter. 03/2017 DE/en PD LON 1 X X testregistrierung Expansion modules Type LonWorks interface for EASYLAB controllers and adapter modules Expansion module for EASYLAB fume cupboard controllers, room controllers, extract air controllers,

More information

LON I/O Module DR-N 8S-10A Art. no.:mtn881801

LON I/O Module DR-N 8S-10A Art. no.:mtn881801 Art. no.: MTN881801 User Manual LON I/O Module DR-N 8S-10A Art. no.:mtn881801 Directory Directory...1 1. Description...2 2. Function...3 3. Installation...3 4. Technical data...5 5. Application description...6

More information

Remote I/O R7 Series LNS PLUG-IN SOFTWARE Model: R7LPLG Users Manual

Remote I/O R7 Series LNS PLUG-IN SOFTWARE Model: R7LPLG Users Manual Remote I/O R7 Series LNS PLUG-IN SOFTWARE Model: R7LPLG Users Manual 1 CONTENTS 1. GENERAL...3 1.1 R7L REMOTE I/O FEATURES...3 1.2 R7LPLG SOFTWARE...3 1.3 HARDWARE REQUIREMENTS...3 1.4 INSTALLING & DELETING

More information

MODEL: R3-NL2. RELATED PRODUCTS XIF File (Device Interface File) XIF file is used to define a LonWorks device when programmed on LonMaker.

MODEL: R3-NL2. RELATED PRODUCTS XIF File (Device Interface File) XIF file is used to define a LonWorks device when programmed on LonMaker. MODEL: R-NL Remote I/O R Series LonWorks INTERFACE MODULE (I/O points) 7. (.08) 0 (.) 09 (.9) mm (inch) MODEL: R NL [][] ORDERING INFORMATION Code number: R-NL-[][] Specify a code from below for each []

More information

Functional Profile: Damper Actuators - general purpose - fire and smoke - airflow control

Functional Profile: Damper Actuators - general purpose - fire and smoke - airflow control Damper Actuator: 8110 LONMARK Functional Profile: Damper Actuators - general purpose - fire and smoke - airflow control LONMARK Functional Profile: Damper Actuator 8110-10 1996, LONMARK Interoperability

More information

LONWORKS Power Line Communication Adapter

LONWORKS Power Line Communication Adapter ABB AB P.O. Box 1005 SE-611 29 NYKÖPING Sweden Tel: +46-155 295000 Fax: +46-155 288110 LONWORKS Power Line Communication Adapter CAL 06000/CCL 06000 User s Manual Rev A Page 1 of 15 Table of Contents 1

More information

AIRLINQ - DIGITAL BMS. BMS module for LONWORKS

AIRLINQ - DIGITAL BMS. BMS module for LONWORKS AIRLINQ - DIGITAL BMS BMS module for LONWORKS Amvent Version 3.0 January, 2019 Airlinq BMS Module Version 5.0 Programming the Airlinq BMS module for LONWORKS Featuring the following objects UFPTnodeObject

More information

Excel 10 W7752D,E,F,G AND W7754K,P,Q,R,S,T,V FAN COIL UNIT CONTROLLERS LNS PLUG-INS

Excel 10 W7752D,E,F,G AND W7754K,P,Q,R,S,T,V FAN COIL UNIT CONTROLLERS LNS PLUG-INS HONEYWELL EXCEL 5 OPEN SYSTEM Excel W775D,E,F,G AND W7754K,P,Q,R,S,T,V FAN COIL UNIT CONTROLLERS LNS PLUG-INS USER GUIDE CONTENTS Introduction... Description of Devices... Products Covered... Organization

More information

PIR Ready SE72xx & SE73xx Series 24 VAC Fan Coil and Zoning Controllers For Commercial and Lodging HVAC Applications LonWorks Integration Manual

PIR Ready SE72xx & SE73xx Series 24 VAC Fan Coil and Zoning Controllers For Commercial and Lodging HVAC Applications LonWorks Integration Manual 1 PIR Ready SE72xx & SE73xx Series 24 VAC Fan Coil and Zoning Controllers For Commercial and Lodging HVAC Applications LonWorks Integration Manual 2 SE7200x Series Product Overview The SE7200 PI controller

More information

LONMARK Functional Profile: Refrigerated Display Case Controller: Defrost Object

LONMARK Functional Profile: Refrigerated Display Case Controller: Defrost Object Version 1.0 Refrigerated Display Case Controller Defrost Object : 10010 LONMARK Functional Profile: Refrigerated Display Case Controller: Defrost Object 10010-10 1997, LONMARK Interoperability Association

More information

Installation- & user instructions

Installation- & user instructions Installation- & user instructions for NILAN LON module for CTS6000 Valid for: CTS6000, SW 1.0092 Version 1.07, 16-12-2015 Contents Contents... 2 Figure table... 3 General description of NilLON... 4 Installation...

More information

Functional Profile: MotorLink

Functional Profile: MotorLink Version 1.4 August 2006 MotorLink: 20000 Compliant with LonMark Application- Layer Interoperability Guidelines Ver. 3.4. Functional Profile: MotorLink UFPTmotorLink Functional Profile 1 Overview This document

More information

Packaged Fresh Air Unit With Tracer LCI-I

Packaged Fresh Air Unit With Tracer LCI-I Product Data Sheet Packaged Fresh Air Unit With Tracer LCI-I Order No. FAXA-SLM001-EN Date: April 2002 Figure 1. Packaged Fresh Air unit with Tracer LCI-I Packaged Fresh Air Unit Overview Packaged Fresh

More information

PIR Ready VT7600 Series Programmable & Non-Programmable Thermostats For Commercial HVAC Applications. LonWorks Integration Manual (September 1, 2010)

PIR Ready VT7600 Series Programmable & Non-Programmable Thermostats For Commercial HVAC Applications. LonWorks Integration Manual (September 1, 2010) PIR Ready VT7600 Series Programmable & Non-Programmable Thermostats For Commercial HVAC Applications LonWorks Integration Manual (September 1, 2010) 1 Product Overview The VT7600 PI thermostat family is

More information

LonWorks Integration Instructions

LonWorks Integration Instructions LonWorks Communicating Room Controllers LonWorks Integration Instructions PIR Ready SE7600 Series Programmable & Non-Programmable Controllers for Commercial HVAC Applications CONTENTS Product Overview

More information

OPERATION MANUAL System Controls MATRIX.BACnet. Gateway for MATRIX.Net to BACnet using Gateways MATRIX.LON

OPERATION MANUAL System Controls MATRIX.BACnet. Gateway for MATRIX.Net to BACnet using Gateways MATRIX.LON OPERATION MANUAL System Controls MATRIX.BACnet Gateway for MATRIX.Net BACnet using Gateways MATRIX.LON Table of Contents MATRIX.BACnet 1 Overview of units and packaged content... 3 1.1 Structure... 4 2

More information

gesis LON R-56/0 (RC) EnOcean LON Gateway

gesis LON R-56/0 (RC) EnOcean LON Gateway gesis LON R-56/0 (RC) EnOcean LON Gateway Manual Product and Object Description Doc. no. BA000580 Date: 6/2009 (Rev. A) 2008 Wieland Electric GmbH This document is protected by copyright. The rights established

More information

Excel 10 W7752D,E,F,G,J AND W7754K,L,M,P FAN COIL UNIT CONTROLLERS LNS PLUG-INS

Excel 10 W7752D,E,F,G,J AND W7754K,L,M,P FAN COIL UNIT CONTROLLERS LNS PLUG-INS Excel W775D,E,F,G,J AND W7754K,L,M,P FAN COIL UNIT CONTROLLERS LNS PLUG-INS USER GUIDE CONTENTS Introduction... Description of Devices... Products Covered... Organization of Manual... Applicable Literature...

More information

Manual PCD7.L611 room controllers LON

Manual PCD7.L611 room controllers LON Manual PCD7.L611 room controllers LON Document 26/876; Edition EN03 2014-04-07 Content 0 Contents 0 Contents 0.1 Document History... 0-3 0.2 About this manual... 0-3 0.3 Brands and trademarks... 0-3 0

More information

LON-module for MULTICAL 601

LON-module for MULTICAL 601 LON-module for MULTICAL 601 Type 67-00-24-000-000 i n s t a l l a t i o n Kamstrup A/S Industrivej 28, Stilling, DK-8660 Skanderborg TEL: +45 89 93 10 00 FAX: +45 89 93 10 01 info@kamstrup.com www.kamstrup.com

More information

FOR ABSORPTION CHILLERS & CHILLER-HEATERS

FOR ABSORPTION CHILLERS & CHILLER-HEATERS INSTALLATION INSTRUCTIONS ACCESSORY KIT: LON ADAPTER (UL Model) FOR ABSORPTION CHILLERS & CHILLER-HEATERS This product provides an interface for LON-compatible BMS systems so that the BMS system may receive

More information

MODEL 1600 FEATURES DESCRIPTION WIRING AND INSTALLATION NETWORK DISPLAY

MODEL 1600 FEATURES DESCRIPTION WIRING AND INSTALLATION NETWORK DISPLAY FEATURES Highly visible fluorescent alphanumeric display able to operate over a temperature range of -40 to 85 C Large 0.43 high numeric display format. 1/8 DIN panel-mount enclosure. Multiple display

More information

FT 5000 EVB Examples Guide

FT 5000 EVB Examples Guide FT 5000 EVB Examples Guide 078-389-01B Echelon, LON, LonWorks, Neuron, 3120, 3150, Digital Home, i.lon, LNS, LonMaker, LonMark, LonPoint, LonTalk, NodeBuilder, ShortStack, and the Echelon logo are trademarks

More information

LONworks for Grundfos Boosters

LONworks for Grundfos Boosters GRUNDFOS INSTRUCTIONS LONworks for Grundfos Boosters CIM/CIU 110 Functional profile and user manual English (GB) English (GB) Functional profile and user manual Original functional profile and user manual.

More information

Grundfos CIM 110 & CIU 110

Grundfos CIM 110 & CIU 110 GRUNDFOS INSTRUCTIONS Grundfos CIM 110 & CIU 110 LONworks for Grundfos pumps Installation and operating instructions Grundfos Hydro MPC connected to CIU 110 GENIbus LON network GENIbus CIU 110 Hydro MPC

More information

Grundfos CIM 100 and CIU 100

Grundfos CIM 100 and CIU 100 GRUNDFOS INSTRUCTIONS Grundfos CIM 100 and CIU 100 LONworks for Grundfos E-pumps and Hydro Multi-E Functional profile and user manual Pump connected to CIU 100 via GENIbus LON network CIU 100 GENIbus RS-485

More information

MODEL: R3-NL1. RELATED PRODUCTS XIF File (Device Interface File) XIF file is used to define a LonWorks device when programmed on LonMaker.

MODEL: R3-NL1. RELATED PRODUCTS XIF File (Device Interface File) XIF file is used to define a LonWorks device when programmed on LonMaker. MODEL: R-NL Remote I/O R Series LonWorks INTERFACE MODULE (analog I/O points, discrete I/O 8 points) 7. (.08) 0 (.) 09 (.9) mm (inch) MODEL: R NL [][] ORDERING INFORMATI Code number: R-NL-[][] Specify

More information

IntesisBox Modbus Server - LON

IntesisBox Modbus Server - LON IntesisBox Server - LON Gateway for integration of LON devices into enabled control systems. Integrate Air Conditioning from the main manufacturers (DAIKIN, Mitsubishi Electric, Mitsubishi Heavy Industries,

More information

RCL-Light/Blind Series RCL-ITR. User Guide

RCL-Light/Blind Series RCL-ITR. User Guide RCL-Light/Blind Series RCL-ITR User Guide Document Revision History: 1. Version 1.0 - Initial Release - July 2013 2. Version 2.0 - Initial Release - November 2013 RCL-Light/Blind Series & RCL-ITR - User

More information

MicroTech III Water Source Heat Pump Unit Controller Protocol Information

MicroTech III Water Source Heat Pump Unit Controller Protocol Information Engineering Data ED 15103-3 Group: Controls Part Number: ED15103 Date: June 2012 Supersedes: ED 15103-2 MicroTech III Water Source Heat Pump Unit Controller Protocol Information Networks Networks Enfinity

More information

Anybus Communicator for LonWorksLWTool

Anybus Communicator for LonWorksLWTool User Manual Anybus Communicator for LonWorksLWTool Rev. 1.1 HMS Industrial Networks AB Germany Japan Sweden U.S.A. France Italy China +49 +81 +46 +1 +33 +39 +86-721 96472 0-45 478 5340-35 17 29 20-312

More information

Maverick I Commercial Packaged Rooftop Systems Protocol Information

Maverick I Commercial Packaged Rooftop Systems Protocol Information Engineering Data ED 15125-3 Group: Controls Part Number: ED 15125 Date: July 2013 Supersedes: ED 15125-2 Maverick I Commercial Packaged Rooftop Systems Protocol Information Networks Networks 2014 Daikin

More information

Anybus X-gateway LonWorks Interface

Anybus X-gateway LonWorks Interface Network Interface Addendum Anybus X-gateway LonWorks Interface Rev. 1.10 HMS Industrial Networks AB Germany Japan Sweden U.S.A. France Italy China + 49-721 - 96472-0 + 81-45 - 478-5340 + 46-35 - 17 29

More information

Installation & Configuration Manual

Installation & Configuration Manual Gateway for the integration of XRV Systems in a BMS based on LonWorks Network: DTLON-IHXR Manual Please keep this specifications Manual properly. Read this specifications Manual carefully before using

More information

NETWORK VARIABLES SPECIFICATIONS. LN INTERFACE Model: TCB-IFLN642TLE

NETWORK VARIABLES SPECIFICATIONS. LN INTERFACE Model: TCB-IFLN642TLE NETWORK VARIABLES SPECIFICATIONS LN INTERFACE Model: TCB-IFLN642TLE Input Network Variables 1 START/STOP instructions nvionoff[n] STOP START (state=1 or value>0) Switches START/STOP. 2 Operation mode nvihvacmode[n]

More information

ECL-103 LONMARK Certified 10-Point Programmable Controller

ECL-103 LONMARK Certified 10-Point Programmable Controller Datasheet ECL-103 LONMARK Certified 10-Point Programmable Controller Overview Features & Benefits The ECL-103 is a microprocessor-based programmable controller designed to control terminal units such as

More information

IntesisBox LON - KNX

IntesisBox LON - KNX IntesisBox - KNX Gateway for the integration of KNX devices into LonWorks networks KNX interface Bindings interface FB_1 Com.Obj1 nvo1 KNX (TP-1) KNX Com.Obj2 Netwo nvon nvi1 nvin (TP/FT-10) Com.ObjN FB_N

More information

drv_ivuopenlink_std_ * Can read from and write to the third-party equipment Any device that supports the LonWorks protocol using SNVT's**

drv_ivuopenlink_std_ * Can read from and write to the third-party equipment Any device that supports the LonWorks protocol using SNVT's** LonWorks Integration Guide CARRIER CORPORATION 2018 A member of the United Technologies Corporation family Stock symbol UTX Catalog No. 11-808-430-01 5/24/2018 Verify that you have the most current version

More information

LONMARK SNVT and SCPT Master List

LONMARK SNVT and SCPT Master List Version 14 Revision 00 December 2012 SNVT and SCPT Master List LONMARK SNVT and SCPT Master List Copyright 1991-2012 Echelon Corporation & LONMARK International Contents SNVT Master List. SCPT Master List.

More information

User Manual. Lonix PCT ID UM.L

User Manual. Lonix PCT ID UM.L ID UM.L82344.2012 User Manual User Manual 2 (42) Index 4 1. Project Settings... 5 2. I/O-Objects... 7 2.1 Views to I/O-objects... 7 2.2 Handling I/O-objects... 9 2.3 Adding I/O-objects... 9 2.4 Modifying

More information

Applications Application is compatible with Q1 Hardware. Calculates Current, Accumulated and Max BTU/-H of any water system using standard temperature and flow meters. The meters can also calculate system

More information

1201L-1K RTD Controller. Revision 1.1. Nico Technology Ltd. 1 Rev.1.1

1201L-1K RTD Controller. Revision 1.1. Nico Technology Ltd. 1 Rev.1.1 1201L-1K RTD Controller Revision 1.1 Nico Technology Ltd. 24F,No.37,SanMin Rd, 2.Sec, PanChiao City, Taipei County, Taiwan Phone +886-2-2954-5338 Fax +886-2-2954-5308 Product Info Thomas@nico-tech.com

More information

INSTALLATION INSTRUCTIONS LonWorks Interface Model No. CZ-CLNC1U

INSTALLATION INSTRUCTIONS LonWorks Interface Model No. CZ-CLNC1U INSTALLATIN INSTRUCTINS LonWorks Interface Model No. CZCLNCU Contents. LonWorks Interface verview Product verview System Diagram Functions. Installation Instructions of LonWorks Interface 4 Safety Precautions

More information

Fieldbus Appendix ANYBUS -S LonWorks

Fieldbus Appendix ANYBUS -S LonWorks Fieldbus Appendix ANYBUS -S LonWorks HMS INDUSTRIAL NETWORKS AB PIELEFELTSGATAN 93-95 S - 302 50 HALMSTAD SWEDEN PHONE: +46 35 17 29 00 FAX: +46 35 17 29 09 e-mail: info@hms-networks.com web: www.hms-networks.com

More information

Stryker Lon Configurable Controllers

Stryker Lon Configurable Controllers Stryker Lon Configurable Controllers SPECIFICATION DATA FEATURES GENERAL The CVL4022AS-VAV1 and CVL4024NS-VAV1 controllers are part of the Stryker family. The controllers are Free Topology Transceiver

More information

Applications Application is compatible with Q1 Hardware. Compatible with any supply/exhaust fans or space heating/cooling equipment. Will control up to 8 individual spaces on a single controller. A cost

More information

ECP-VAV Series. ECP-VAV Series. 10-Point Single Duct VAV / VVT Free Programmable Controller. Applications. Features

ECP-VAV Series. ECP-VAV Series. 10-Point Single Duct VAV / VVT Free Programmable Controller. Applications. Features ECP-VAV Series 10-Point Single Duct VAV / VVT Free Programmable Controller Applications Designed to meet the requirements of single duct variable air volume (VAV) or variable volume according to temperature

More information

Excel 12 INTEGRATED ROOM CONTROL SOLUTIONS: FCU + LIGHT + SUNBLIND

Excel 12 INTEGRATED ROOM CONTROL SOLUTIONS: FCU + LIGHT + SUNBLIND INTEGRATED ROOM CONTROL SOLUTIONS: FCU + + SUNBLIND PRODUCT DATA FEATURES Three-in-one controller for HVAC, Light, and Sunblind applications reduces hardware costs and engineering effort (one LONWORKS

More information

7. How to access FC 100 parameters 49

7. How to access FC 100 parameters 49 Contents Contents 1. Copyright 3 Copyright 3 Copyright, Limitation of Liability and Revision Rights 3 2. Safety 5 Safety 5 3. Introduction 7 Introduction 7 4. How to install 11 How to install 11 5. Configuration

More information

LX Series Free Programmable Controllers Wizard User s Guide

LX Series Free Programmable Controllers Wizard User s Guide LX Series Free Programmable Controllers Wizard User s Guide LX-PRG5x0-1, LX-PRG4x0-1, LX-PRG300-1, LX-PRG203-1 Code No. LIT-12011483 Issued June 22, 2009 Free-Programming Wizard.................................................

More information

Page 1 of 7 Job Name Location Purchaser Engineer Submitted to Reference Approval Construction Unit Designation Schedule # Features LonWorks Gateway Control gateway that allows control and monitoring of

More information

LONMARK Certified 28-Point Programmable Controllers. Overview

LONMARK Certified 28-Point Programmable Controllers. Overview Datasheet LONMARK Certified 28-Point Programmable Controllers Applications Meets the requirements of the following applications: Air Handling Units Multi-Zone Applications Chillers Boilers Cooling Towers

More information

IntesisBox LON KNX. User s Manual Issue date: 25/05/2011 r2 eng

IntesisBox LON KNX. User s Manual Issue date: 25/05/2011 r2 eng IntesisBox LON KNX User s Manual Issue date: 25/05/2011 r2 eng Intesis Software S.L. All Rights Reserved. Information in this document is subject to change without notice. The software described in this

More information

LONMARK Certified 18-Point Programmable Controller. Overview

LONMARK Certified 18-Point Programmable Controller. Overview LONMARK Certified 18-Point Programmable Controller Applications Meets the requirements of the following applications: Air Handling Units Chillers Boilers Cooling Towers Heat-Exchangers Pumps Lighting Control

More information

for developing i.lon 100 Web Sites

for developing i.lon 100 Web Sites i.lon Vision Tips, Tricks and Troubleshooting Guide for developing i.lon 100 Web Sites (Rev 0.4) i LON Vision - Tips Tricks and Troubleshooting rev 0_4.doc 1 / 37 Table of Contents I. Introduction... 3

More information

M7410G LINEAR VALVE ACTUATOR WITH LON CAPABILITIES

M7410G LINEAR VALVE ACTUATOR WITH LON CAPABILITIES M7410G LINEAR VALVE ACTUATOR WITH LON CAPABILITIES PRODUCT DATA APPLICATION The LON actuator is targeted for decentralized building structures and gives customers an effective new capability in energy

More information

LX Series Free Programmable Controllers

LX Series Free Programmable Controllers Code No. LIT-1900565 Issued November 5, 2012 LX-PRG203-1, LX-PRG300-1, LX-PRG4x0-1, LX-PRG5x0-1 LX Series Free Programmable Controllers Description The LX Series Free Programmable Controllers are microprocessor-based

More information

LRC 5038/10 Helio 8 way light controller switching only

LRC 5038/10 Helio 8 way light controller switching only Helio 8 way light controller switching only 1/5 Product details general The LRC5038/10 (also known as 8LS switching only) is a LonWorks light controller with eight configurable outputs, two pairs of sensor

More information

Manual Release 09/2002. cm-lon FOR LOGO! Communication with LOGO! with LON systems

Manual Release 09/2002. cm-lon FOR LOGO! Communication with LOGO! with LON systems Manual Release 09/2002 cm-lon FOR LOGO! Communication with LOGO! with LON systems s LOGO! Expansion Module Manual Chapters Safety Notices 1 Getting to know 2 Mounting and wiring the 3 Putting the into

More information

Actuator Zone 1 Mar 2004

Actuator Zone 1 Mar 2004 MZ18L G-50-30 Actuator Zone 1 Mar 2004 The LON actuator is targeted for decentralized building structures and gives customers an effective new capability in energy management and product flexibility. The

More information

WebAccess Device Driver Guide. LNS to LONWorks Device Driver Guide

WebAccess Device Driver Guide. LNS to LONWorks Device Driver Guide LNS to LONWorks Device Driver Guide Version 4.0 rev 3 Broadwin Technology, Inc. Table of Contents LNS to LONWorks Device Driver Guide 1 1. LNS to LONWorks Device Communications 2 1.1 Introduction to LNS

More information

LonWorks Network Integration with NAE and LCS Technical Bulletin

LonWorks Network Integration with NAE and LCS Technical Bulletin LONWORKS Network Integration with NAE and LCS Technical Bulletin Code No. LIT-1201668 Software Release 9.0 Issued August 2017 Refer to the QuickLIT website for the most up-to-date version of this document.

More information

Excel 12 INTEGRATED ROOM CONTROL SOLUTIONS: FCU + LIGHT + SUNBLIND

Excel 12 INTEGRATED ROOM CONTROL SOLUTIONS: FCU + LIGHT + SUNBLIND INTEGRATED ROOM CONTROL SOLUTIONS: FCU + + SUNBLIND PRODUCT DATA FEATURES Three-in-one controller for HVAC, Light, and Sunblind applications reduces hardware costs and engineering effort (one LONWORKS

More information

RCM Room Command Module New Style

RCM Room Command Module New Style LONWoRKS Compatible Controllers Manual Product Bulletin Issue Date 08 2005 RCM Room Command Module New Style The newly styled RCM Room Command Module is designed for use with LONMARK compliant space comfort

More information

Stryker Lon Configurable Controllers

Stryker Lon Configurable Controllers Stryker Lon Configurable Controllers SPECIFICATION DATA The Stryker controllers require the Stryker Feature to be licensed in the WEBpro workbench tool and the WEBS AX JACE Controller for programming and

More information

NEUROLOGIC RESEARCH CORPORATION MODEL 2500

NEUROLOGIC RESEARCH CORPORATION MODEL 2500 NEUROLOGIC RESEARCH CORPORATION MODEL 2500 NETWORK HUMISTAT Compact, self-contained dehumidifier controller. 0.5 degrees C accuracy typical. RH sensor is digitally calibrated for 2% accuracy. Open communication

More information

Applications Application is compatible with Q1 Hardware. Compatible with Air Handling Unit equipment up to 6 stages of cooling or heating, analog or floating point valves or digital stages, discharge pressure/variable

More information

SECTION SOFTWARE FOR PROGRAMMING LOCAL CONTROL UNIT

SECTION SOFTWARE FOR PROGRAMMING LOCAL CONTROL UNIT SECTION 25 15 16 SOFTWARE FOR PROGRAMMING LOCAL CONTROL UNIT PART 1 - GENERAL 1.1 SUMMARY A. Section includes software requirements for Local Control Units and programming logic documentation. B. All Local

More information

NodeBuilder User s Guide

NodeBuilder User s Guide NodeBuilder User s Guide Release 3.1 Revision 3 @ ECHELON C o r p o r a t i o n 078-0141-01E Echelon, LON, LONWORKS, LonTalk, Neuron, LONMARK, 3120, 3150, NodeBuilder, ShortStack, the LonUsers logo, the

More information

LonWorks Network Integration with NAE and LCS Technical Bulletin

LonWorks Network Integration with NAE and LCS Technical Bulletin LONWORKS Network Integration with NAE and LCS Technical Bulletin Code No. LIT-1201668 Software Release 8.0 Issued June 2016 Refer to the QuickLIT website for the most up-to-date version of this document.

More information

ilon100 SOAP /XML to LONWorks Device Driver Guide

ilon100 SOAP /XML to LONWorks Device Driver Guide ilon100 SOAP /XML to LONWorks Device Driver Guide Version 4.0 rev 3 Advantech Corp., Ltd. page 1-1 Table of Contents ilon100 SOAP /XML to LONWorks Device Driver Guide 1-1 1. ilon100 SOAP/XML Ethernet Device

More information

Regulate efficiently, conserve resources

Regulate efficiently, conserve resources OPERATION MANUAL System Controls DencoHappel MATRIX.LON Regulate efficiently, conserve resources Product Range Group 2 Group 2 Group 1 Group 4 Group 16 DencoHappel product range 2 PR-2016-0101-GB Subject

More information

ECL-400 Series LONMARK Certified 24-Point Programmable Controllers

ECL-400 Series LONMARK Certified 24-Point Programmable Controllers D a t a s h e e t ECL-400 Series LONMARK Certified 24-Point Programmable Controllers Overview The ECL-400 Series controllers are microprocessor-based programmable controllers designed to control various

More information

Belimo Gateway MP to LONWORKS - UK24LON

Belimo Gateway MP to LONWORKS - UK24LON Product information UK24LON LONWORKS Belimo Gateway MP to LONWORKS - UK24LON Contents Complete Overview 2 Technical Data 3 Safety Notes 4 Product features 4 Installation and commissioning 4 Electrical

More information

Functional Profile: Chiller

Functional Profile: Chiller Version: 1.0 Chiller: 8040 LONMARK Functional Profile: Chiller LONMARK Functional Profile: Chiller 1 8040-10 1996, LONMARK Interoperability Association. Echelon, LON, LONWORKS, LONMARK, and the LONMARK

More information

LONWORKS Plug-In Software

LONWORKS Plug-In Software Installation and Maintenance Manual IM 933 Group: McQuay Controls Part Number: IM 933 Date: September 2008 Supercedes: New LONWORKS Plug-In Software For use with the MicroTech III Unitary Controller -

More information

Viessmann and Vitotronic are trademarks of Viessmann Werke GmbH & Co KG registered in the United States and other countries.

Viessmann and Vitotronic are trademarks of Viessmann Werke GmbH & Co KG registered in the United States and other countries. Commissioning Overview Use with Viessmann Vitotronic NR2 controls with Tridium based BMS Technical Review Trademark Information Niagara Framework and Niagara AX Framework logos used herein including such

More information

GRUNDFOS MAGNA Series 2000 LON Module

GRUNDFOS MAGNA Series 2000 LON Module GRUNDFOS INSTRUCTIONS GRUNDFOS MAGNA Series 2000 LON Module Installation and operating instructions Table of contents. 1. General description of MAGNA-LON... 3 2. Installation... 4 3. SNVT Details, Pump

More information

DDC110-L1.. DDC110-L4 technolon Room Module

DDC110-L1.. DDC110-L4 technolon Room Module technolon Room Module DDC110-L1, DDC110-L2, DDC110-L3 and DDC110-L4 Single room control or room display and service module for single-room control in the LON network. With display of the room temperature

More information

ECP-PTU Series. ECP-PTU Series. 14-Point High-Voltage Programmable Power Terminal Unit Controller. Applications. Features

ECP-PTU Series. ECP-PTU Series. 14-Point High-Voltage Programmable Power Terminal Unit Controller. Applications. Features ECP-PTU Series 14-Point High-Voltage Programmable Power Terminal Unit Controller Applications Control of equipment such as: roof top units, fan coils, heat pumps, ventilator units, terminal units, lighting

More information

Climatix LON communication with POL Integration guide

Climatix LON communication with POL Integration guide Climatix Integration guide Contents 1 About this document...3 1.1 Revision history...3 1.2 Before you start...3 1.3 Reference documents...3 1.4 Document conventions...4 1.5 Important information on safety...5

More information

NEUROLOGIC RESEARCH CORPORATION MODEL 1160 INITIAL DRAFT INDOOR TEMPERATURE NETWORK TRANSMITTER

NEUROLOGIC RESEARCH CORPORATION MODEL 1160 INITIAL DRAFT INDOOR TEMPERATURE NETWORK TRANSMITTER INDOOR TEMPERATURE NETWORK TRANSMITTER Ultra wide 6:1 (12-72 VDC) operating DC voltage range and 4:1 (12-50 VAC) operating AC voltage range. Low cost transmitter for indoor temperature monitoring. 0.5

More information

Climatix LON Communication Module

Climatix LON Communication Module Climatix LON Communication Module Contents 1 About this document...5 1.1 Revision history...5 1.2 Before you start...5 1.3 Reference documents...5 1.4 Document conventions...6 1.5 Important information

More information