Library for Building Automation. Function Block Description for Enocean Radio Receiver

Size: px
Start display at page:

Download "Library for Building Automation. Function Block Description for Enocean Radio Receiver"

Transcription

1 Library for Function Block Description for Radio Receiver Last Update

2 Copyright 2008 by WAGO Kontakttechnik GmbH & Co. KG All rights reserved. WAGO Kontakttechnik GmbH & Co. KG Hansastraße 27 D Minden Phone: +49 (0) 571/ Fax: +49 (0) 571/ info@wago.com Web: Technical Support Phone: +49 (0) 571/ Fax: +49 (0) 571/ tcba@wago.com Every conceivable measure has been taken to ensure the correctness and completeness of this documentation. However, as errors can never be fully excluded we would appreciate any information or ideas at any time. We wish to point out that the software and hardware terms as well as the trademarks of companies used and/or mentioned in the present manual are generally trademark or patent protected. Subject to design changes WAGO Kontakttechnik GmbH & Co KG P.O. box 2880 D Minden Phone: / info@wago.com Copyright 2008 Hansastr. 27 D Minden Fax.: / Web: 2

3 General WAGO-I/O-PRO CAA Library for radio receiver List of contents Important Comments 5 TCopyright... 5 TPersonnel Qualification... 5 Intended Use... 5 Scope of validity... 5 Receiver function blocks 6 receiver (FbReceive)... 6 Receiver IPC (FbReceive_IPC)... 7 transmitter ID 8 Search pushbutton transmitter ID (FbShow_ID_By_Button)... 8 Seach sensor transmitter ID (FbShow_ID_By_Click)... 9 Learning Transmitter IDs (FbLearn_Switch) Learning Transmitter IDs (new) (FbLearn_Switch_01) Buttons 15 Two or four pushbuttons (FbButton_x_Channel) Eight pushbuttons (FbButton_8_Channel) Select button channel (FbButtonSelectChannel) Position switches 20 Window handle SecuSignal (FbSecuSignal) Window / door contact SRW01 (FbSRW01) Door handle- / position switches TGF / EF 41 / EF 95 (FbEF_xx) Digital input SR 65 DI (FbSR65DI) Key- or Selector switches IP67 (FbSelectorSwitch_IP67) Pushbuttons IP67 (FbPushbutton_IP67) Light sensor / presence detector 26 Presence detector SR PIR-360 (FbSR_PIR_360) SR-MDS Ceiling Multi Sensor (FbSR_MDS) Light sensor SR 65 LI (FbSR65LI) Room operation panels / Temperature sensors 29 Room operating panel SR 04 (FbSR04) Room sensor humidity/temperature SR 04 rh (FbSR04_rH) Temperature sensor SR 65 (FbSR65) Subject to design changes WAGO Kontakttechnik GmbH & Co. KG P.O. box 2880 D Minden Phone: / info@wago.com Copyright 2008 Hansastr. 27 D Minden Fax.: / Web: 3

4 List of Contents Raw data 34 One byte STM sensor (Fb_1_BYTE_Sensor) Four byte STM sensor (Fb_4_BYTE_Sensor) Subject to design changes WAGO Kontakttechnik GmbH & Co KG P.O. box 2880 D Minden Phone: / Copyright 2008 Hansastr. 27 D Minden Fax.: / Web: 4

5 Important comments Important Comments Copyright Personnel Qualification To ensure fast installation and start-up of the units described in this manual, we strongly recommend that the following information and explanation is carefully read and adhered to. This manual is copyrighted, together with all figures and illustrations contained therein. Any use of this manual which infringes the copyright provisions stipulated herein, is not permitted. Reproduction, translation and electronic and photo-technical archiving and amendments require the written consent of WAGO Kontakttechnik GmbH & Co. KG. Non-observance will entail the right of claims for damages. The use of the product detailed in this manual is exclusively geared to specialists having qualifications in PLC programming, electrical specialists or persons instructed by electrical specialists who are also familiar with the valid standards. WAGO Kontakttechnik GmbH & Co. KG declines all liability resulting from improper action and damage to WAGO products and third party products due to non-observance of the information contained in this manual. Intended Use Scope of validity For each individual application, the components supplied are to work with a dedicated hardware and software configuration. Modifications are only admitted within the framework of the possibilities documented in the manuals. All other changes to the hardware and/or software and the nonconforming use of the components entail the exclusion of liability on part of WAGO Kontakttechnik GmbH & Co. KG. Please direct any requirements pertaining to a modified and/or new hardware or software configuration directly to WAGO Kontakttechnik GmbH & Co. KG. This application note is based on the respective manufacturer's stated hardware and software and the associated documentation. This application note therefore only applies to the installation described. New hardware and software versions may need to be treated differently. Please pay attention to the detailed description in the respective manuals. Subject to design changes WAGO Kontakttechnik GmbH & Co. KG P.O. box 2880 D Minden Phone: / info@wago.com Copyright 2008 Hansastr. 27 D Minden Fax.: / Web: 5

6 receiver (FbReceive) Receiver function blocks receiver (FbReceive) FbReceive _04.lib without / 814 / 815 / 816 and Used libraires: mod_com.lib bmodule_750_642 BYTE Index of the module Preset value = 1 typ typ Output data of the received radio telegram. berror BYTE Error code 0x00 = no error 0x02 = no module identified 0x81 = faulty telegram (CRC error) The function block FbReceive is used to communicate with the radio module via fieldbus controllers. The controller recognizes the plugged modules on its own and counts them one after the other, starting from the left. To address the function block to the proper module, the corresponding module index must be entered as a constant at the input bmodule_750_642. This function block may be used only once per installed radio receiver module. All other function blocks must be linked to these function blocks via the input variable typ. The output variable typ contains all relevant data of the received radio telegrams. It can then be further processed by other function blocks. Possible errors will be displayed at the output berror. Subject to design changes WAGO Kontakttechnik GmbH & Co KG P.O. box 2880 D Minden Phone: / info@wago.com Copyright 2008 Hansastr. 27 D Minden Fax.: / Web: 6

7 Receiver IPC (FbReceive_IPC) Receiver IPC (FbReceive_IPC) FbReceive_IPC _04.lib In_Data ARRAY[0..3] OF BYTE Input array of radio receiver module Input/output parameter: Data type: Comment: Out_Data ARRAY [0..3] OF BYTE Output array of radio receiver module typ typ Output data of the received radio telegram. berror BYTE Error code 0x00 = no error 0x81 = faulty telegram (CRC error) The function block FbReceive_IPC is used to communicate with the radio module via fieldbus controllers. The inputs In_Data and Out_Data contain the input or output array for the data of the radio receiver module. The variables at these inputs must be linked to the corresponding hardware address. The address depends on the installation position of the module. Example: In_Data = Input AT %IB0 : ARRAY [0..3] OF BYTE; Out_Data = Output AT %QB0 : ARRAY [0..3] OF BYTE; This function block may be used only once per installed radio receiver module. All other function blocks must be linked to these function blocks via the input variable typ. The output variable typ contains all relevant data of the received radio telegrams. It can then be further processed by other function blocks. Possible errors will be displayed at the output berror. Subject to design changes WAGO Kontakttechnik GmbH & Co. KG P.O. box 2880 D Minden Phone: / info@wago.com Copyright 2008 Hansastr. 27 D Minden Fax.: / Web: 7

8 Search pushbutton transmitter ID (FbShow_ID_By_Button) transmitter ID Search pushbutton transmitter ID (FbShow_ID_By_Button) FbShow_ID_By_Button _04.lib typ typ Input data of the received radio telegram. bbutton_count BYTE Number of buttons pressed simultaniously Preset value = 2 dwid DWORD Display of the transmitter ID searched This function block helps identify the transmitter IDs of the radio sensors. The output variable typ of the FbReceive function block must be connected to the input variable typ of this function block. All the received The value at input bbutton_count defines how many buttons must be pressed simultaniously so that the transmitter ID included in the radio telegram can be displayed by the function block at the output dwid. Radio telegrams having only one button pressed, for example, will be ignored ( bbutton_count = 2). The function block can only be used for touch sensors. Transmitter IDs of analog sensors cannot be displayed. Subject to design changes WAGO Kontakttechnik GmbH & Co KG P.O. box 2880 D Minden Phone: / info@wago.com Copyright 2008 Hansastr. 27 D Minden Fax.: / Web: 8

9 Seach sensor transmitter ID (FbShow_ID_By_Click) Seach sensor transmitter ID (FbShow_ID_By_Click) FbShow_ID_By_Click _04.lib typ typ Input data of the received radio telegram. enumrf_type enum RF_TYPE Selection of the type of sensor to be searched Preset value = RF_TYPE_PTM Range of values: 5 = RF_TYPE_PTM 6 = RF_TYPE_STM 8 = RF_TYPE_CTM bclick_number BYTE Number of successively received telegrams having the same transmitter ID Preset value = 2 dwid DWORD Display of the transmitter ID searched This function block helps identify the transmitter IDs of the radio sensors. The output variable typ of the FbReceive function block must be connected to the input variable typ of this function block. All the received A filter can be selected via the input of the enumrf_type input parameter so that only the telegrams of some particular types of sensors will be identified by the function block. The following requirements must be fulfilled so that the received transmitter ID can be displayed at the output dwid : The telegram must belong to the sensor type selected at the input enumrf_type. The number of successively received telegrams having the same transmitter ID corresponds to the input value bclick_number. Note concerning the types of sensors: RF_TYPE_PTM = touch sensor with piezoelectric contact RF_TYPE_STM = sensors with solar power supply RF_TYPE_CTM = remote control with solar power supply Subject to design changes WAGO Kontakttechnik GmbH & Co. KG P.O. box 2880 D Minden Phone: / info@wago.com Copyright 2008 Hansastr. 27 D Minden Fax.: / Web: 9

10

11 Learning Transmitter IDs (FbLearn_Switch) FbLearn_Switch _04.lib xlearn_mode BOOL Learn mode activation typ Input / Output parameter Data type: Comment: typswitch_ids typ List of the learned transmitter IDs _ Learned_ Switches xstatus BOOL Feedback status This function block can learn up to 16 PTM 100 touch sensors in the PLC via there transmitter ID. As a result, the touch sensors can be logically assigned to the application functions even during the program runtime and the radio sensors used can be replaced. The output variable typ of FbReceive function block must be connected to the input variable typ of this function block. All the received The input/output variable typswitch_ids has 16 storage spaces in which the transmitter IDs can be stored. The following procedure is required to learn a touch sensor: 1. Set the value of the xlearn_mode input variables on TRUE. The xstatus output signal starts flashing quickly (approx. 30 Hz). 2. Operate two sensor push-buttons at the same time The current storage space no. 1 is displayed via the flash code at the xstatus output. 3. The storage space number is incremented by pressing two sensor press-buttons repeatedly. The current storage space number is displayed via the flash code (see picture) at the xstatus output.

12 4. By double clicking one of the sensor push-buttons, the transmitter ID is written to the storage space no. addressed currently. The xstatus output starts flashing quickly and signals that other touch sensors can be learned. 5. The xlearn_mode input signal must be set to FALSE signal to escape the learn mode. xstatus = FALSE Note: The input/output variable typswitch_ids should be declared as a VAR RETAIN variable, so that the assignments of the recorded IDs are saved even after resetting the controller.

13 Learning Transmitter IDs (new) (FbLearn_Switch_01) WAGO-I/O-PRO CAA Library Elements FbLearn_Switch_01 _04.lib Input parameter: Data type: Comment : xlearn_mode BOOL Learn mode activation typ Input / Output parameter Data type: Comment: typswitch_ids typ List of the learned transmitter IDs _ Learned_ Switches xstatus BOOL Feedback status bplacenumber BYTE Number of the storage location This function block can learn up to 16 PTM touch sensors in the PLC via there transmitter ID. As a result, the touch sensors can be logically assigned to the application functions even during the program runtime and the radio sensors used can be replaced. The output variable typ of FbReceive function block must be connected to the input variable typ of this function block. All the received The input/output variable typswitch_ids has 16 storage spaces in which the transmitter IDs can be stored.

14 The following procedure is required to learn a touch sensor: 1. Set the value of the xlearn_mode input variables on TRUE. The xstatus output signal starts flashing quickly (approx. 30 Hz). 2. Operate one sensor push-button The current storage space no. 1 is displayed via the flash code at the xstatus output. 3. The storage space number is incremented by pressing the sensor pressbutton repeatedly. The current storage space number is displayed at the output bspacenumber and via the flash code (see picture) at the xstatus output. 4. By a long click one of the sensor push-button, the transmitter ID is written to the storage space no. addressed currently. The xstatus output starts flashing quickly and signals that other touch sensors can be learned. 5. The xlearn_mode input signal must be set to FALSE signal to escape the learn mode. xstatus = FALSE Note: The input/output variable typswitch_ids should be declared as a VAR RETAIN variable, so that the assignments of the recorded IDs are saved even after resetting the controller.

15 Buttons Two or four pushbuttons (FbButton_x_Channel) FbButton_2_Channel FbButton_4_Channel _04.lib typ dwid DWORD Transmitter ID of the touch sensor ttimeout TIME Maximum on-time Preset value = t#0s t#0s unlimited on-time xupper_button_l BOOL Output signal button top left xlower_button_l BOOL Output signal button bottom left xupper_button_r BOOL Output signal button top right xlower_button_r BOOL Output signal button bottom right The function block FbButton_2_Channel and respectively FbButton_4_Channel converts the radio telegrams of individual touch sensors into a boolean output signal using radio technology. The function blocks can be used for touch sensors with one or two rocker switches. They support PTM 100 and PTM 200 sensors. The output variable typ of the FbReceive function block must be connected to the input variable typ of this function block. All the received The received data is processed by the function block provided that the number entered at the input "dwid" is identical to the sensor ID number included in the telegram. As a result, the function block can be logically assigned to certain types of sensors.

16 If the buttons are pressed, the output signals ( xupper_button_l... xlower_button_r ) are set to TRUE. The input ttimeout can be optionally used to limit the maximum on-time of the button outputs. If no time value (t= 0 second) has been selected, the on-time of the outputs is unlimited, i.e. the output signal is TRUE as long as the push-button is pressed. Note: Pressing two buttons simultaneously allows to set two output signals at the same time with 4-channel PTM 200 sensors. Eight pushbuttons (FbButton_8_Channel) FbButton_8_Channel _04.lib typ dwid DWORD Transmitter ID of the touch sensor ttimeout TIME Maximum on-time Preset value = t#0s t#0s unlimited on-time xbutton_1 BOOL Output touch signal 1 xbutton_2 BOOL Output touch signal 2 xbutton_3 BOOL Output touch signal 3 xbutton_4 BOOL Output touch signal 4 xbutton_5 BOOL Output touch signal 5 xbutton_6 BOOL Output touch signal 6 xbutton_7 BOOL Output touch signal 7 xbutton_8 BOOL Output touch signal 8

17 The function block FbButton_8_Channel converts the radio telegrams of individual touch sensors into boolean output signals using radio technology. This function block can be used for touch sensors equipped with one, two or four rocket-switches. The output variable typ of the FbReceive function block must be connected to the input variable typ of this function block. All the received The received data is processed by the function block provided that the number entered at the input "dwid" is identical to the sensor ID number included in the telegram. As a result, the function block can be logically assigned to certain types of sensors. The input ttimeout can be optionally used to limit the maximum on-time of the outputs xbutton_1 xbutton_8. If no time value (t= 0 second) has been defined, the on-time of the outputs is unlimited, i.e. the output signal is TRUE as long as the push-button is pressed. According to the number of rocker switches, the outputs are assigned as follows (when using a PTM 100 sensor): xbutton_5 xbutton_1 xbutton_7 xbutton_1 xbutton_3 xbutton_5 xbutton_7 xbutton_6 xbutton_2 xbutton_8 xbutton_2 xbutton_4 xbutton_6 xbutton_8 Note: When using PTM 200 sensors, the assignment will differ from the one shown above. In this case we recommend the use of function block FbButton_2_Channel or FbButton_4_Channel.

18 Select button channel (FbButtonSelectChannel) FbButtonSelectChannel _04.lib typ dwid DWORD Transmitter ID of the touch sensor bbutton BYTE Number of the touch sensor push-button Preset value = 1 Range of values 1-8 ttimeout TIME Maximum on-time Preset value: t#0s unlimited on-time xbutton BOOL Output touch signal The function block FbButtonSelectChannel converts the radio telegrams of individual touch sensors into a boolean output signal using radio technology. This function block can be used for touch sensors equipped with one, two or four rocket-switches. The output variable typ of the FbReceive function block must be connected to the input variable typ of this function block. All the received The received data is processed by the function block provided that the number entered at the input "dwid" is identical to the sensor ID number included in the telegram. As a result, the function block can be logically assigned to certain types of sensors. Numbers have been assigned to the push-buttons of the touch sensors as shown in the picture below. The number (1-8) at the bbutton input defines the push-button which is used to induce a reaction at the xbutton output.

19 The input ttimeout can be optionally used to limit the maximum on-time of the xbutton output. If no time value (t= 0 second) has been selected, the on-time of the outputs is unlimited, i.e. the output signal is TRUE as long as the push-button is pressed. According to the number of rocker switches, the outputs are assigned as follows (when using a PTM 100 sensor): Note: When using PTM 200 sensors, the assignment will differ from the one shown above. In this case we recommend the use of function block FbButton_2_Channel or FbButton_4_Channel

20 Position switches Window handle SecuSignal (FbSecuSignal) FbSecuSignal _04.lib typ dwid DWORD Transmitter ID of the sensor xwindow_closed BOOL Window handle is in closed position xwindow_opened BOOL Window handle is in opened position xwindow_tilted BOOL Window handle is in tilted position The function module FbSecuSignal provides the position of the window handle "SecuSignal" by Hoppe Co. The output variable typ of the FbReceive function block must be connected to the input variable typ of this function block. All the received The received data is processed by the function block provided that the number entered at the input "dwid" is identical to the sensor ID number included in the telegram. As a result, the function block can be logically assigned to certain types of sensors. The output "xwindows_closed" indicates that the window handle is in "closed" position. The output "xwindows_opened" indicates that the window handle is in "open" position. The output "xwindow_tilted" indicates that the windows handle is in "tilted" position.

21 Window / door contact SRW01 (FbSRW01) FbSRW01 _04.lib typ dwid DWORD Transmitter ID of the sensor ttimeout TIME Maximum interval between two telegrams. Preset value = t#60m xopen BOOL Window open = TRUE xerror BOOL No new telegram within timeout period. The function block FbSRW01 outputs the status of the window contact SRW01. The output variable typ of the FbReceive function block must be connected to the input variable typ of this function block. All the received The received data is processed by the function block provided that the number entered at the input "dwid" is identical to the sensor ID number included in the telegram. As a result, the function block can be logically assigned to certain types of sensors. The output xopen indicates if the window contact is open or closed. The input ttimeout can optionally be used to monitor if the sensor sends a telegram at regular intervals (e.g. every 15 min). An input value ttimeout = t#0s deactivates the timeout monitoring. If the ttimeout time has expired without the function block having received a new telegram, the xerror output will be set to TRUE.

22 Door handle- / position switches TGF / EF 41 / EF 95 (FbEF_xx) FbEF_41 FbEF_95 _04.lib typ dwid DWORD Transmitter ID of the sensor ttimeout TIME Maximum interval between two telegrams. Preset value = t#60m xactiv BOOL Output switch signal xerror BOOL No new telegram within timeout period. The function block FbEF_41 supports the door handle switch (TGF), the position switch (EF 41) and the pull-wire switch (EF 41 Z) from Steute. The function block FbEF_95 supports the EF 95 position switch. The output variable typ of the FbReceive function block must be connected to the input variable typ of this function block. All the received The received data is processed by the function block provided that the number entered at the input "dwid" is identical to the sensor ID number included in the telegram. As a result, the function block can be logically assigned to certain types of sensors. The output xactiv indicates, it the switch is active. The input ttimeout can optionally be used to monitor if the sensor sends a telegram at regular intervals (e.g. every 15 min). An input value ttimeout = t#0s deactivates the timeout monitoring. If the ttimeout time has expired without the function block having received a new telegram, the xerror output will be set to TRUE.

23 Digital input SR 65 DI (FbSR65DI) FbSR65DI _04.lib typ dwid DWORD Transmitter ID of the sensor ttimeout TIME Maximum interval between two telegrams Preset value = t#60m xactiv BOOL Output switch signal rbatteryvoltage REAL Battery voltage from the sensor xerror BOOL No new telegram within timeout period The function block FbSR65DI indicates the digital input signal from the Thermokon module SR65 DI. The output variable typ of the FbReceive function block must be connected to the input variable typ of this function block. All the received The received data is processed by the function block provided that the number entered at the input "dwid" is identical to the sensor ID number included in the telegram. As a result, the function block can be logically assigned to certain types of sensors. The input ttimeout can optionally be used to monitor if the sensor sends a telegram at regular intervals (e.g. every 16 min). An input value ttimeout = t#0s deactivates the timeout monitoring. If the ttimeout time has expired without the function block having received a new telegram, the xerror output will be set to TRUE. The output rbatteryvoltage indicates the battery voltage of the sensor. The output xactiv indicates the status of the digital input.

24 Key- or Selector switches IP67 (FbSelectorSwitch_IP67) WAGO-I/O-PRO CAA Library Elements FbSelectorSwitch_IP67 _04.lib typ dwid DWORD Transmitter ID of the sensor bswitchsetting BYTE Actual switch position xswitchsetting_1 BOOL Key- or selector switch in position 1 xswitchsetting_0 BOOL Key- or selector switch in position 0 xswitchsetting_2 BOOL Key- or selector switch in position 2 The function module FbSelectorSwitch_IP67 provides the position of the IP 67 keyor selector switch by DUX Co. The output variable typ of the FbReceive function block must be connected to the input variable typ of this function block. All the received The received data is processed by the function block provided that the number entered at the input "dwid" is identical to the sensor ID number included in the telegram. As a result, the function block can be logically assigned to certain types of sensors. The output bswitchsetting idicates the switch setting of the key- or selector switch. The output "xswitchsetting_1" indicates that the switch setting is in position 1. The output "xswitchsetting_0" indicates that the switch setting is in position 0. The output "xswitchsetting_2" indicates that the switch setting is in position 2.

25 Pushbuttons IP67 (FbPushbutton_IP67) WAGO-I/O-PRO CAA Library Elements FbPushbutton_IP67 _04.lib typ dwid DWORD Transmitter ID of the sensor xpushbutton BOOL Status of the pushbutton The function module FbPushbutton_IP67 provides the position of the IP 67 pushbutton by DUX Co. The output variable typ of the FbReceive function block must be connected to the input variable typ of this function block. All the received The received data is processed by the function block provided that the number entered at the input "dwid" is identical to the sensor ID number included in the telegram. As a result, the function block can be logically assigned to certain types of sensors. The output xpushbutton indicates the status of the pushbutton.

26 Light sensor / presence detector Presence detector SR PIR-360 (FbSR_PIR_360) FbSR_PIR_360 _04.lib typ dwid DWORD Transmitter ID of the sensor ttimeout TIME Maximum interval between two telegrams. Preset value = t#60m xpresence BOOL Indicates the presence of a person within the measurement range of the sensor. xerror BOOL No new telegram within timeout period. The function block FbSR_PIR_360 indicates the state of the movement sensor SR-PIR 360. The output variable typ of the FbReceive function block must be connected to the input variable typ of this function block. All the received The received data is processed by the function block provided that the number entered at the input "dwid" is identical to the sensor ID number included in the telegram. As a result, the function block can be logically assigned to certain types of sensors. The input ttimeout can optionally be used to monitor if the sensor sends a telegram at regular intervals (e.g. every 16 min). An input value ttimeout = t#0s deactivates the timeout monitoring. If the ttimeout time has expired without the function block having received a new telegram, the xerror output will be set to TRUE. The output "xpresence indicates whether a person is within the measurement range of the sensor.

27 SR-MDS Ceiling Multi Sensor (FbSR_MDS) WAGO-I/O-PRO CAA Library Elements FbSR_MDS _04.lib typ dwid DWORD Transmitter ID of the sensor ttimeout TIME Maximum interval between two telegrams. Preset value = t#60m xpresence BOOL Indicates the presence of a person. rbrightness REAL Light level from the light sensor [LUX] Value range = Lux rbatteryvoltage REAL Battery voltage from the sensor[v] Value range = V xerror BOOL No new telegram within timeout period. The FbSR_MDS function block displays both the movement and brightness detected by the SR-MDS ceiling multi sensor. The output variable typ of the FbReceive function block must be connected to the input variable typ of this function block. All the received The received data is processed by the function block provided that the number entered at the input "dwid" is identical to the sensor ID number included in the telegram. As a result, the function block can be logically assigned to the sensor. The input ttimeout can optionally be used to monitor if the sensor sends a telegram at regular intervals (e.g. every 16 min). An input value ttimeout = t#0s deactivates the timeout monitoring. If the ttimeout time has expired without the function block having received a new telegram, the xerror output will be set to TRUE. The output "xpresence indicates whether a person is within the measurement range of the sensor. The "rbrightness" output indicates the measured brightness value and the "rbatteryvoltage" output shows the charging voltage of the energy storage device.

28 Light sensor SR 65 LI (FbSR65LI) FbSR65LI _04.lib typ dwid DWORD Transmitter ID of the sensor ttimeout TIME Maximum interval between two telegrams. Preset value = t#60m wluxrange30k WORD Light level in 30 K Lux range wluxrange60k WORD Light level in 60 K Lux range xerror BOOL No new telegram within timeout period The function block FbSR65LI evaluates the light level from SR 65 LI in two different measurement ranges. Only one measurement range is valid depending on the setting of the light sensor. The output variable typ of the FbReceive function block must be connected to the input variable typ of this function block. All the received The received data is processed by the function block provided that the number entered at the input "dwid" is identical to the sensor ID number included in the telegram. As a result, the function block can be logically assigned to certain types of sensors. The input ttimeout can optionally be used to monitor if the sensor sends a telegram at regular intervals (e.g. every 17 min). An input value ttimeout = t#0s deactivates the timeout monitoring. If the ttimeout time has expired without the function block having received a new telegram, the xerror output will be set to TRUE. The output "wluxrange30k indicates the current light level for a measurement range set between 300 lx and 30,000 lx. The output "wluxrange60k indicates the current light level for a measurement range set between 600 lx and 60,000 lx.

29 Room operation panels / Temperature sensors Room operating panel SR 04 (FbSR04) FbSR04 _04.lib typ dwid DWORD Transmitter ID of the sensor rmaxsetpointcorrection REAL Maximum correction of desired value at the room operating panel [K] ttimeout TIME Maximum interval between two telegrams. Preset value = t#60m xerror BOOL No new telegram within timeout period. xpresence BOOL Presence button activated = FALSE Default value = TRUE rtemperature REAL Indication of room temperature [ C] Default value: 20 rsetpointcorrection REAL Correction of the desired value at the room operating panel [K] xauto BOOL Rotary switch position automatic Default value = TRUE xlevel_0 BOOL Rotary switch level 0 xlevel_1 BOOL Rotary switch level 1 xlevel_2 BOOL Rotary switch level 2 xlevel_3 BOOL Rotary switch level 3

30 The function block FbSR04 evaluates the data of the Series SR04 room operating panel. The output variable typ of the FbReceive function block must be connected to the input variable typ of this function block. All the received The received data is processed by the function block provided that the number entered at the input "dwid" is identical to the sensor ID number included in the telegram. As a result, the function block can be logically assigned to certain types of sensors. The maximum desired value deviation is set at the rmaxsetpointcorrection input. The desired value deviation that is indicated at the output rsetpointcorrection depends on the specified maximum desired value deviation and on the position of the adjuster for the desired value on the room operating panel. The input ttimeout can optionally be used to monitor if the sensor sends a telegram at regular intervals (e.g. every 15 min). An input value ttimeout = t#0s deactivates the timeout monitoring.. If the ttimeout time has expired without the function block having received a new telegram, the xerror output will be set to TRUE. The output xpresence is set to FALSE if the presence button of the room control panel is activated. The measured temperature is given in C at the output rtemperature. The outputs xauto and xlevel_0 to xlevel_3 indicate the ventilation level of the room operating panel.

31 Room sensor humidity/temperature SR 04 rh (FbSR04_rH) FbSR04_rH _04.lib typ dwid DWORD Transmitter ID of the sensor rmaxsetpointcorrection REAL Maximum correction of desired value at the room operating panel [K] ttimeout TIME Maximum interval between two telegrams. Preset value = t#60m xerror BOOL No new telegram within timeout period. xpresence BOOL Presence button activated = FALSE Default value = TRUE rtemperature REAL Indication of room temperature [ C] Default value: 20 rsetpointcorrection REAL Correction of the desired value at the room operating panel [K] rhumidity REAL Indication of relative humidity Range of values: % The function block FbSR04_rH evaluates the data of the series SR04 rh room operating panels. The output variable typ of the FbReceive function block must be connected to the input variable typ of this function block. All the received The received data is processed by the function block provided that the number entered at the input "dwid" is identical to the sensor ID number included in the telegram. As a result, the function block can be logically assigned to certain types of sensors.

32 The maximum desired value deviation is set at the rmaxsetpointcorrection input. The desired value deviation that is indicated at the output rsetpointcorrection depends on the specified maximum desired value deviation and on the position of the adjuster for the desired value on the room operating panel. The input ttimeout can optionally be used to monitor if the sensor sends a telegram at regular intervals (e.g. every 15 min). An input value ttimeout = t#0s deactivates the timeout monitoring. If the ttimeout time has expired without the function block having received a new telegram, the xerror output will be set to TRUE. The output xpresence is set to FALSE if the presence button of the room control panel is activated The measured temperature is given in C at the output rtemperature. The measured relative humidity is transmitted at the rhumidity output and has a value range of 0 to 100 %

33 Temperature sensor SR 65 (FbSR65) FbSR65 _04.lib typ dwid DWORD Transmitter ID of the sensor ttimeout TIME Maximum interval between two telegrams. Preset value = t#60m xerror BOOL No new telegram within timeout period. rtemperature REAL Temperature measured by the temperature sensor [ C] The function blocks FbSR65_xxx output the measuring value of the temperature sensor. The output variable typ of the FbReceive function block must be connected to the input variable typ of this function block. All the received The received data is processed by the function block provided that the number entered at the input "dwid" is identical to the sensor ID number included in the telegram. As a result, the function block can be logically assigned to certain types of sensors. The input ttimeout can optionally be used to monitor if the sensor sends a telegram at regular intervals (e.g. every 15 min). An input value ttimeout = t#0s deactivates the timeout monitoring. If the ttimeout time has expired without the function block having received a new telegram, the xerror output will be set to TRUE. The measured temperature is given in C at the output rtemperature. Value ranges of the temperature sensors: FbSR65-20 C C FbSR65_TF -20 C C FbSR65_AKF 10 C C FbSR65_VFG 10 C C

34 Raw data One byte STM sensor (Fb_1_BYTE_Sensor) Fb_1_BYTE_Sensor _04.lib typ dwid DWORD Transmitter ID of the sensor bvalue BYTE Analog output signal Range of values The function block Fb_1_BYTE_Sensor is used to output the analog signal of a sensor by means of radio technology. The output variable typ of the FbReceive function block must be connected to the input variable typ of this function block. All the received The received data is processed by the function block provided that the number entered at the input "dwid" is identical to the sensor ID number included in the telegram. As a result, the function block can be logically assigned to certain types of sensors. The bvalue output operates in the range Depending on the type of sensor used, this raw value must be converted into a physical value requiring the manufacturer s specifications of the sensor (e.g. temperature curve).

35 Four byte STM sensor (Fb_4_BYTE_Sensor) Fb_4_BYTE_Sensor _04.lib typ dwid DWORD Transmitter ID of the sensor xcontact_1 BOOL Digital output signal 1 xcontact_2 BOOL Digital output signal 2 xcontact_3 BOOL Digital output signal 3 xcontact_4 BOOL Digital output signal 4 bvalue_1 BYTE Analog output signal 1 Range of values bvalue_2 BYTE Analog output signal 2 Range of values bvalue_3 BYTE Analog output signal 3 Range of values The function block Fb_4_BYTE_Sensor is used to deliver three analog signals of a sensor using radio technology. Furthermore, four digital signals can also be delivered by the same sensor (e.g. presence buttons of room temperature sensor). The output variable typ of the FbReceive function block must be connected to the input variable typ of this function block. All the received The received data is processed by the function block provided that the number entered at the input "dwid" is identical to the sensor ID number included in the telegram. As a result, the function block can be logically assigned to certain types of sensors.

36 The outputs xcontact_1 xcontact_4 deliver the four possible digital signals (e.g. presence button or mode switch) of the analog radio sensor. The analog outputs bvalue_1 bvalue_3 operate in the range Depending on the type of sensor used, these raw values must be converted into physical values requiring the manufacturer s specifications of the sensor (e.g. temperature curve).

37 WAGO Kontakttechnik GmbH & Co. KG P.O. box 2880 D Minden Hansastraße 27 D Minden Phone: / Fax: / info@wago.com Internet:

Connecting an EnOcean radio sensor to the WAGO-I/O-SYSTEM Application notes

Connecting an EnOcean radio sensor to the WAGO-I/O-SYSTEM Application notes Connecting an EnOcean radio sensor to the WAGO-I/O-SYSTEM Application notes Last revision: 15.05.07 2 General Copyright 2007 by WAGO Kontakttechnik GmbH & Co. KG All rights reserved WAGO Kontakttechnik

More information

Application Note. WAGO-I/O-SYSTEM 750 EnOcean Equipment Profile (EEP) Connecting EnOcean Wireless Sensors / Actuators Using the WAGO EnOcean Library

Application Note. WAGO-I/O-SYSTEM 750 EnOcean Equipment Profile (EEP) Connecting EnOcean Wireless Sensors / Actuators Using the WAGO EnOcean Library WAGO-I/O-SYSTEM 750 EnOcean Equipment Profile (EEP) Connecting EnOcean Wireless Sensors / Actuators Using the WAGO EnOcean Library Version: 12.06.2013 Imprint 2013 by WAGO Kontakttechnik GmbH & Co. KG

More information

Fieldbus Independent I/O Modules Incremental Encoder Interface Manual

Fieldbus Independent I/O Modules Incremental Encoder Interface Manual Fieldbus Independent Incremental Encoder Interface 750-634 Manual Version 1.0.3 ii General opyright 2006 by WGO Kontakttechnik GmbH & o. KG ll rights reserved. WGO Kontakttechnik GmbH & o. KG Hansastraße

More information

Compatibility list DALI Sensors DALI Multi-Master Module

Compatibility list DALI Sensors DALI Multi-Master Module Compatibility list Building Automation WAGO-I/O- PRO V2.3 DALI Multi-Master Module 753-647 2 DALI Multi-Master Module 753-647 2018 by WAGO Kontakttechnik GmbH & Co. KG All rights reserved. WAGO Kontakttechnik

More information

Fieldbus Independent I/O Modules Counter Modules , (/xxx-xxx) Manual

Fieldbus Independent I/O Modules Counter Modules , (/xxx-xxx) Manual Fieldbus Independent Counter Modules 750-404, (/xxx-xxx) Manual Version 1.1.2 ii General Copyright 2006 by WAGO Kontakttechnik GmbH & Co. KG All rights reserved. WAGO Kontakttechnik GmbH & Co. KG Hansastraße

More information

Fieldbus Independent I/O Modules EnOcean Radio Receiver Manual

Fieldbus Independent I/O Modules EnOcean Radio Receiver Manual Fieldbus Independent EnOcean Radio Receiver 750-642 Manual Version 1.0.2 ii General Copyright 2006 by WAGO Kontakttechnik GmbH & Co. KG All rights reserved. WAGO Kontakttechnik GmbH & Co. KG Hansastraße

More information

instabus EIB product documentation

instabus EIB product documentation Page: 1 of 39 Push button interface 4-gang Sensor Product name: Push button interface 4-gang Design: UP (flush-mounting type) Item no.: 2076-4T-01 ETS search path: Input / Binary Input, 4-gang / Push button

More information

Instruction Manual. VISAM Data agent. VGATE CLi / CSi. A product of the. VBASE - HMI/SCADA family. Document: HB_VGATE_CLi_CSi_v1.0e_FINAL.

Instruction Manual. VISAM Data agent. VGATE CLi / CSi. A product of the. VBASE - HMI/SCADA family. Document: HB_VGATE_CLi_CSi_v1.0e_FINAL. Instruction Manual VISAM Data agent VGATE CLi / CSi A product of the VBASE - HMI/SCADA family Document: Version: 1.0, English 2 V I S A M D A T E N V E R M I T T L E R V G A T E C L I / C S I Copyright

More information

Wireless wall transmitter, 1-gang with inscription space, Wireless wall transmitter, 3-gang with inscription space

Wireless wall transmitter, 1-gang with inscription space, Wireless wall transmitter, 3-gang with inscription space Wireless wall transmitter, 1-gang with inscription space Order No. : 5331.. Wireless wall Order No. : 5333.. Operating instructions 1 Safety instructions Electrical devices may only be mounted and connected

More information

Width (W): 44 mm. bus connecting and branching terminal External supply --- Inputs: Number: up to 2 (depending on parameterization: channel 1 to 2)

Width (W): 44 mm. bus connecting and branching terminal External supply --- Inputs: Number: up to 2 (depending on parameterization: channel 1 to 2) Product name: Design: 2-channel push button interface UP (flush-mounting type) Item no.: 1118 00 ETS search path: Gira Giersiepen / input / binary input, 2fold / Universal push putton interface 2fold Functional

More information

1: White buttons Used by the user on a daily basis. 2: Grey buttons Used only upon first startup.

1: White buttons Used by the user on a daily basis. 2: Grey buttons Used only upon first startup. Fig. 1 Lock/ unlock 30 1000 Light 1 100 300 zone 1 Learn actual lux LED 600 2000 0,4 0,6 0,8 1,0 1,2 Time 1 Light 2 zone 2 1,4 1,6 Factor of lux zone 1 Pulse 2min 5min Time Time 2 10min 15min 30min 1 2

More information

EPSITRON Electronic Circuit Breakers Compact and Precise ECBs for DC Circuits

EPSITRON Electronic Circuit Breakers Compact and Precise ECBs for DC Circuits EPSITRON Electronic Circuit Breakers Compact and Precise ECBs for DC Circuits WHY SECONDARY-SIDE FUSE PROTECTION? On the secondary side, switchedmode power supplies provide DC voltage to control circuit

More information

Operating instructions Flat-Type Wall-Mounted Radio Control

Operating instructions Flat-Type Wall-Mounted Radio Control Operating instructions Flat-Type Wall-Mounted Radio Control Insert 1. Function The wall-mounted radio control insert permits remote control of all receivers of the Funk-Management system. This wall-mounted

More information

Electrical data Nominal voltage AC/DC 24 V Nominal voltage frequency

Electrical data Nominal voltage AC/DC 24 V Nominal voltage frequency echnical data sheet LR24A-KNX Communicative rotary actuator for ball valves Nominal torque 5 Nm Nominal voltage AC/DC 24 V Control modulating Conversion of sensor signals Communication via KNX (S-Mode)

More information

Application Note YJKP - Adjustment force sensor

Application Note YJKP - Adjustment force sensor Application Note YJKP - Adjustment force sensor Step by step description to adjust the force sensor of the YJKP YJKP 100205 Title... YJKP - Adjustment force sensor Version... 1.10 Document no.... 100205

More information

KNX ENO 620/622 (32-channel AP)

KNX ENO 620/622 (32-channel AP) KNX O 620/622 (32-channel AP) Gateway between EnOcean and the KNX bus Operating and installation manual Installation and connection Fig. 1: KNX O 620 Fig. 2: KNX O 622 Application KNX O 620 and 622 serve

More information

Evaluation Kits EVA 100 and EVA 105

Evaluation Kits EVA 100 and EVA 105 Evaluation Kits EVA 100 and EVA 105 User Manual V1.7 April 2007 Revision History The following major modifications and improvements have been made to the first version of the document (EVA 100 User Manual

More information

External brake resistor AX2090-BW5x

External brake resistor AX2090-BW5x Documentation External brake resistor AX2090-BW5x Accessories for Beckhoff servo drive AX5000 Version: Date: 1.3 2018-03-14 Table of content Table of content 1 Foreword... 5 1.1 Notes on the documentation...

More information

luxcontrol lighting control system basicdim basicdim ILD 16DPI 69f Compact control module with ambient light sensor and motion sensor

luxcontrol lighting control system basicdim basicdim ILD 16DPI 69f Compact control module with ambient light sensor and motion sensor ILD 16DPI 69f Compact control module with ambient light sensor and motion sensor Product description Compact dimensions for luminaire installation For up to 10 DSI or LI devices (max. 5 per output channel)

More information

Electrical devices may only be mounted and connected by electrically skilled persons.

Electrical devices may only be mounted and connected by electrically skilled persons. Order No. : 5490.. Operating instructions 1 Safety instructions Electrical devices may only be mounted and connected by electrically skilled persons. Serious injuries, fire or property damage possible.

More information

The universal input/output device is a DIN rail mounted device. It is connected to the EIB via a bus connecting terminal.

The universal input/output device is a DIN rail mounted device. It is connected to the EIB via a bus connecting terminal. , GH Q631 0026 R0111 SK 0097 B97 The universal input/output device is a DIN rail mounted device. It is connected to the EIB via a bus connecting terminal. The device has 32 freely programmable inputs/outputs,

More information

Rev ABB i-bus KNX 6151/11 U-500. Power and productivity for a better world TM

Rev ABB i-bus KNX 6151/11 U-500. Power and productivity for a better world TM 1 73-1-7831 Rev. 01 3.2012 6151/11 U-500 Power and productivity for a better world TM Page: 1 of 31 Switching actuator 1gang with binary Inputs, FM Actuator Article-no.: 6151/11 U-500 ETS search path:

More information

Fieldbus Independent I/O Modules DC Drive Controller Manual

Fieldbus Independent I/O Modules DC Drive Controller Manual Fieldbus Independent I/O Modules DC Drive Controller 750-636 Manual Version 1.0.1 ii General Copyright 2007 by WAGO Kontakttechnik GmbH & Co. KG All rights reserved. WAGO Kontakttechnik GmbH & Co. KG Hansastraße

More information

EPSITRON Advanced Power Supply System Innovations

EPSITRON Advanced Power Supply System Innovations EPSITRON Advanced Power Supply System Innovations EPSITRON COMPACT POWER Technical Data L H W Item Number 787-1202 787-1212 Nominal input voltage 100... 240 VAC 100... 240 VAC Input voltage range 90...

More information

Application Description

Application Description Arcus-EDS Application Description Gateway KNX / DMX Art.-Nr. 40120186 Active Principle and Application Area The KNX-DMX Gateway is an Interface between the KNX bus and the DMX512 bus. It combines elements

More information

Operating instructions II / 2004

Operating instructions II / 2004 Operating instructions II / 2004 Light and presence sensor TOUCH DIM LS/PD LI OSRAM GmbH Costumer-Service-Center (CSC) Steinerne Furt 62 86167 Augsburg, Germany www.osram.com www.osram.de Tel. : (+49)

More information

KNX manual 1-channel flush-mounted switch actuator SU 1

KNX manual 1-channel flush-mounted switch actuator SU 1 KNX manual 1-channel flush-mounted switch actuator SU 1 4942520 2018-10-04 Contents 1 Function description 3 2 Operation 4 3 Technical data 5 4 The SU 1 application programme 7 4.1 Selection in the product

More information

Mx-RPW Room Control Module (Built-In Occupancy Sensor)

Mx-RPW Room Control Module (Built-In Occupancy Sensor) Wireless Room Controller Application Solar-powered, self-learning room sensor with LCD and smart communication management for measuring room temperature, independent generation of utilization time profiles

More information

Software Description SRCN_HWL_9_1_03 for SRC 04 FTT and SRC 65 FTT

Software Description SRCN_HWL_9_1_03 for SRC 04 FTT and SRC 65 FTT Software Description SRCN_HWL_9_1_03 for SRC 04 FTT and SRC 65 FTT 1 Overview The application enables the receipt and evaluation of max. nine EnOcean wireless sensors. The following sensor types are supported:

More information

EIB/KNX Switch Actuators. User manual

EIB/KNX Switch Actuators. User manual EIB/KNX Switch Actuators User manual IT KNT 004 IT KNT 012 Tel.: +34943627988 E-mail: knx@dinuy.com Web: www.dinuy.com Contents 1. Introduction --------------------------------------------------------------------------------------------------------------

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

Switch actuator. Movement detector Move/monitoring 1305/1.0, Art. No , ,

Switch actuator. Movement detector Move/monitoring 1305/1.0, Art. No , , 0.0.1 Move/monitoring 1305/1.0, Art. No. 6316.., 6326.., 6318.. General Application 1305/1.0 has been developed for the KNX movement detector, Merten article numbers 6316.., 6326.. and 6318... In the following

More information

Multi radio connection MFA

Multi radio connection MFA Radio converter for the integration of line-dependent continuous small servo drives in wireless transferable signal chains. With integrated switching power supply. Contents subject to change Contents s

More information

Brief description. Type overview

Brief description. Type overview echnical data sheet VAV-Compact KNX A pressure sensor, digital VAV controller and damper actuator all in one, providing a VAV-Compact solution with a communications capability for pressureindependent VAV

More information

Time Switch, 2-channel, MDRC SW/S 2.5, GH Q R0001

Time Switch, 2-channel, MDRC SW/S 2.5, GH Q R0001 , GH Q605 0062 R0001 The 2-fold week time switch is a DIN rail mounted device with a width of two modules for insertion in the distribution board. It is connected to the EIB via a bus connecting terminal.

More information

Functions module / Gateways Application Description Product Page KNX-GW-DMX-xxx DMX Gateway. KNX-GW-DMX Product Group 1

Functions module / Gateways Application Description Product Page KNX-GW-DMX-xxx DMX Gateway. KNX-GW-DMX Product Group 1 Seite 1 KNX---xxx Gateway KNX-- Product Group 1 Document: 4200_ex_KNX--.pdf KNX-- The KNX-- is a gateway between the KNX-Bus and the 512-Bus used by a wide range of devices for lighting applications. Article

More information

Electrical devices may only be mounted and connected by electrically skilled persons.

Electrical devices may only be mounted and connected by electrically skilled persons. Art. No. : FM..1561.07.. Operating instructions 1 Safety instructions Electrical devices may only be mounted and connected by electrically skilled persons. Serious injuries, fire or property damage possible.

More information

Industrial motor controller for brushed DC motors 12 VDC

Industrial motor controller for brushed DC motors 12 VDC Industrial motor controller for brushed DC motors 12 VDC Design for output currents up to 5 A Control with the following functions: - reversal of direction of rotation - rotational speed control (external)

More information

KNX Room temperature controller

KNX Room temperature controller Page: 1 of 82 KNX Room temperature controller Sensor Product name: Design: Article. no. ETS search path: Status: 23.10.2006 Functions: KNX Room temperature controller with integrated push-button interface

More information

Electrical data Nominal voltage AC/DC 24 V Nominal voltage frequency

Electrical data Nominal voltage AC/DC 24 V Nominal voltage frequency echnical data sheet LR24A-KNX Communicative rotary actuator for ball valves Nominal torque 5 Nm Nominal voltage AC/DC 24 V Conversion of sensor signals echnical data Electrical data Nominal voltage AC/DC

More information

Radio System Strobe Wizard Plus Freemask

Radio System Strobe Wizard Plus Freemask Radio System Strobe Wizard Plus Freemask User manual Translation of the original German user manual Doc. No.: 900.0509.00 Version: 09/2017 Contents Information about this manual and about the manufacturer...

More information

Universal Radio Cord Dimmer Order No.: Function

Universal Radio Cord Dimmer Order No.: Function Order o.: 0335 0 a) b) Function The permits radio-operated control of lighting fixtures. The device permits switching (short actuation) or dimming (long actuation) of the lighting. The dimmer is operated

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

animeo KNX/EIB 4 AC Motor Controller WM/DRM V AC

animeo KNX/EIB 4 AC Motor Controller WM/DRM V AC somfy.com animeo KNX/EIB 4 AC Motor Controller WM/DRM 220-240V AC Installation manual Ref. 1860114 Ref. 1860116 2007, SOMFY SAS. ALL RIGHTS RESERVERD. REF. 5050779-30/04/2007 Table of contents Introduction...

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

K-BUS Switch Actuator

K-BUS Switch Actuator K-BUS Switch Actuator User manual-ver. 2 KA/R0416.1 KA/R0816.1 KA/R1216.1 Contents Contents... 2 1. Introduction... 3 1.1 Product and function overview... 3 2. Technical Properties... 3 3. Commissioning...

More information

Technical Description. Wireless Automation Input/Output Module WDIO100

Technical Description. Wireless Automation Input/Output Module WDIO100 Technical Description Wireless Automation Input/Output Module Please note the following Target group This description is intended for the use of trained specialists in electrical installation and control

More information

LCC1653, LCC1656, LRI1653 Datasheet ActiLume DALI System

LCC1653, LCC1656, LRI1653 Datasheet ActiLume DALI System 1/8 Product description The Philips ActiLume lighting control system consists of a small, lightweight sensor and controller, designed for easy integration into luminaires. ActiLume is a true Plug and Play

More information

Use of the application program. Functional description. GAMMA instabus Application program description. October 2007

Use of the application program. Functional description. GAMMA instabus Application program description. October 2007 Use of the application program Product family: Product type: Manufacturer: Venetian blind Switch Siemens Name: Venetian blind actuator N 523/11 Order no.: 5WG1 523-1AB11 Functional description Application

More information

Product and Applications Description

Product and Applications Description Product and pplications Description Diagram The transmitter 230V wave UP 110 (Diagram ) is a flushmounted device with radio communication for the wireless operation of room functions. It is possible to

More information

Use of the application program. Functional description. GAMMA instabus Application program description. May A8 Venetian blind actuator

Use of the application program. Functional description. GAMMA instabus Application program description. May A8 Venetian blind actuator Use of the application program Product family: Product type: Manufacturer: Venetian blind Switch Siemens Name: Venetian blind actuator N 523/11 Order no.: 5WG1 523-1AB11 Functional description Application

More information

KNX manual High-performance switch actuators RM 4 H FIX1 RM 8 H FIX2

KNX manual High-performance switch actuators RM 4 H FIX1 RM 8 H FIX2 KNX manual High-performance switch actuators RM 4 H FIX1 RM 8 H FIX2 4940212 4940217 2018-10-17 Contents 1 Function description 3 2 Operation 4 3 Technical data 5 4 The FIX2 RM 8 H application programme

More information

User Manual. High Efficiency Locator Beacon

User Manual. High Efficiency Locator Beacon User Manual RT-B77 HELB High Efficiency Locator Beacon Edited by: RHOTHETA Elektronik GmbH Kemmelpark Dr.-Ingeborg-Haeckel-Str. 2 82418 Murnau Germany Tel.: +49 8841 4879-0 Fax: +49 8841 4879-15 Internet:

More information

EPM 300(C) Installation Test Tool User Manual Template for OEM Manufacturers/First Marketer

EPM 300(C) Installation Test Tool User Manual Template for OEM Manufacturers/First Marketer Installation Test Tool User Manual Template for OEM Manufacturers/First Marketer EnOcean GmbH Kolpingring 18a 82041 Oberhaching Germany Phone +49.89.67 34 689-0 Fax +49.89.67 34 689-50 info@enocean.com

More information

luxcontrol lighting control system DALI sensors basicdim RCL DBC Control module for combination with ambient light sensor, switch and presence sensor

luxcontrol lighting control system DALI sensors basicdim RCL DBC Control module for combination with ambient light sensor, switch and presence sensor basicdim RCL DBC Control module for combination with ambient light sensor, switch and presence sensor Digital control module with ambient light sensor, motion detector and switch input DALI Broadcast control

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

SR04 rh Series Wireless Room Temperature/Humidity Sensors

SR04 rh Series Wireless Room Temperature/Humidity Sensors Applications Series Wireless Room Temperature/Humidity Sensors Wireless and battery-less 868MHz room sensors for temperature, humidity and ventilation control. Features Integrated 868.3 MHz transmitter

More information

Technical data: Instabus EIB supply Voltage: YY 6 x 0.6 mm; red: bus (+) / black: bus (-)

Technical data: Instabus EIB supply Voltage: YY 6 x 0.6 mm; red: bus (+) / black: bus (-) Product designation: switching actuator 2fold 6A FM Design: FM (flush-mounted type) Article no.: 1057 00 ETS search path: Gira Giersiepen / Output / Binary output, 2fold / switching actuator 2fold 6A FM

More information

Industrial-Automation System HIMatrix. Data Sheet Z 7306

Industrial-Automation System HIMatrix. Data Sheet Z 7306 Industrial-Automation System HIMatrix Data Sheet Z 7306 Shunt-Adapter HIMA Paul Hildebrandt GmbH + Co KG Industrial Automation HI 800 349 BEA Important Notes All HIMA products mentioned in this manual

More information

Mounting instruction and operating manual. Access Point (UK) HmIP-HAP-UK

Mounting instruction and operating manual. Access Point (UK) HmIP-HAP-UK Mounting instruction and operating manual Access Point (UK) HmIP-HAP-UK Package contents Quantity Description 1 Homematic IP Access Point (UK) 1 Plug-in mains adapter 1 Network cable 2 Screws 2 Plugs 1

More information

Laser contrast scanner. Dimensioned drawing

Laser contrast scanner. Dimensioned drawing Laser contrast scanner Dimensioned drawing en 06-2016/08 50110624-03 60mm 10-30 V DC Red light laser transmitter Various teach variants Small light spot adjustment via EasyTune Level adaptation for glossy

More information

Application Description 81EU01-E/R3210. Input Module for. Analog Signals 5-fold, 0/ ma. Input, Output, Signal Conditioning.

Application Description 81EU01-E/R3210. Input Module for. Analog Signals 5-fold, 0/ ma. Input, Output, Signal Conditioning. Module and Application Description PROCONTROL P Input, Output, ignal Conditioning Input Module for Analog ignals 5-fold, /4... 2 ma 1KGF 1 438 E, Edition 2/2 Application The input module is used as a substitute

More information

Industrial motor controller for brushed DC motors 24 VDC

Industrial motor controller for brushed DC motors 24 VDC Industrial motor controller for brushed DC motors 24 VDC Design for output currents up to 5 A Control with the following functions: - reversal of direction of rotation - open-loop speed control (external)

More information

Installer manual inputs/outputs interface for led KNX

Installer manual inputs/outputs interface for led KNX Installer manual 01514 2 inputs/outputs interface for led KNX Exclusion of liability: Despite checking that the contents of this document match the hardware and software, deviations cannot be completely

More information

Instruction manual. art Installation manual

Instruction manual. art Installation manual Instruction manual art. 01521 Installation manual Contents GENERAL FEATURES AND FUNCTIONALITY from page 4 ETS PARAMETERS AND COMMUNICATION OBJECTS from page 6 COMMUNICATION OBJECTS GENERAL FEATURES AND

More information

Brunata Optuna H Ultrasonic energy meter Type 775 Installation Guide Edition 1.2

Brunata Optuna H Ultrasonic energy meter Type 775 Installation Guide Edition 1.2 Ultrasonic energy meter Type 775 Installation Guide Edition 1.2 UK-QB101575 / 29.05.2012 Brunata a/s is a Danish owned company. We have more than 90 years of experience within developing and producing

More information

1 Safety instructions. 2 Device components. Radio bus system. Radio socket outlet adapter for dimming Order No. : Operating instructions

1 Safety instructions. 2 Device components. Radio bus system. Radio socket outlet adapter for dimming Order No. : Operating instructions Order No. : 1185.. Operating instructions 1 Safety instructions Electrical equipment may only be installed and fitted by electrically skilled persons. Serious injuries, fire or property damage possible.

More information

Electrical devices may only be mounted and connected by electrically skilled persons.

Electrical devices may only be mounted and connected by electrically skilled persons. enet Server Order No. : 5301 00 Power adapter enet Server 12 V DC Operating instructions 1 Safety instructions Electrical devices may only be mounted and connected by electrically skilled persons. Serious

More information

Optical laser distance sensors. Dimensioned drawing

Optical laser distance sensors. Dimensioned drawing Dimensioned drawing en 02-2012/11 50118552 50 100mm 18-30 V DC We reserve the right to make changes DS_ODSL9L100_en_50118552.fm High resolution 0.01mm Reflection-independent distance information Highly

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

Operating instructions Magnetic-inductive flow meter FMM FMM FMM

Operating instructions Magnetic-inductive flow meter FMM FMM FMM Operating instructions Magnetic-inductive flow meter FMM50-1001 FMM75-1001 FMM100-1001 Scan or Click the above QR Code or go to https://www.automationdirect.com/vid-fl-0003 for a short quick start video.

More information

905U Wireless. New Products... New Solutions. The wireless alternative to expensive cabling... Simple but Reliable. Easy to Use

905U Wireless. New Products... New Solutions. The wireless alternative to expensive cabling... Simple but Reliable. Easy to Use Wireless New Products... New Solutions The range of telemetry modules provide remote monitoring and control by radio or twisted-pair wire, over short or long distances. Transducer signals connected at

More information

1.2 M-Bus (optional) The M-Bus is a galvanically isolated interface for the transmission of meter data (absolute values).

1.2 M-Bus (optional) The M-Bus is a galvanically isolated interface for the transmission of meter data (absolute values). Operating Instructions Communication Interfaces 1 Interfaces and Options 1.1 Optical (infrared) interface For communication with the optical interface an optocoupler and the Device Monitor software are

More information

Documentation. Measurement and Control. Type: ELT-GP2

Documentation. Measurement and Control. Type: ELT-GP2 Documentation Measurement and Control Type: ELT-GP2 05.01.2018 K. Folkerts Content 1. Data sheet 2. Installation instructions 3. Declarations of conformity 05.01.2018 K. Folkerts 1 05.01.2018 K. Folkerts

More information

Product documentation

Product documentation Product documentation Area/line coupler ALBRECHT JUNG GMBH & CO. KG Volmestraße 1 58579 Schalksmühle Telefon: +49.23 55.8 06-0 Telefax: +49.23 55.8 06-2 04 kundencenter@jung.de www.jung.de Service Center

More information

CROSS Chassis from 160 A to 450 A

CROSS Chassis from 160 A to 450 A CROSS Chassis from 160 A to 450 A STS CATALOGUE Important note! The technical data enclosed is for general information. Please note that the operating instructions and references indicated on the products

More information

MOTION DETECTOR WITH CONSTANT LIGHT CONTROL DM KNT 003

MOTION DETECTOR WITH CONSTANT LIGHT CONTROL DM KNT 003 MOTION DETECTOR WITH CONSTANT LIGHT CONTROL DM KNT 003 INSTRUCTIONS MANUAL Tel.: +34 943627988 E-mail: knx@dinuy.com Web: www.dinuy.com General Description Indoor universal mechanism box mounted KNX motion

More information

Electronic Circuit Breaker ECONOMY REMOTE

Electronic Circuit Breaker ECONOMY REMOTE Electronic Circuit Breaker - Number of available output channels: 2 / 4 / 8 - Each channel has a 2-wire interface for adjusting the rated current - High capacitive loads start up reliably - The channels

More information

PU202 Level converter & encoder signal generator without potential separation

PU202 Level converter & encoder signal generator without potential separation Operating Manual PU202 Level converter & encoder signal generator without potential separation Product features: Converts HTL signals from 10 up to 30 V (A / B / Z) into the corresponding TTL / RS422 format

More information

Operating instructions. Radio weather station

Operating instructions. Radio weather station Operating instructions Radio weather station 0334.. Notes regarding the battery Batteries and button cells do not belong in the hands of children. Contact a doctor immediately if a button cell has been

More information

Operating instructions Magnetic-inductive flow meter FMM FMM FMM

Operating instructions Magnetic-inductive flow meter FMM FMM FMM Operating instructions Magnetic-inductive flow meter FMM50-1002 FMM75-1002 FMM100-1002 Scan or Click the above QR Code or go to https://www.automationdirect.com/vid-fl-0003 for a short quick start video.

More information

The Frequency Divider component produces an output that is the clock input divided by the specified value.

The Frequency Divider component produces an output that is the clock input divided by the specified value. PSoC Creator Component Datasheet Frequency Divider 1.0 Features Divides a clock or arbitrary signal by a specified value. Enable and Reset inputs to control and align divided output. General Description

More information

WAGO Application: Plastic Technology Center (SKZ) in Würzburg, Germany

WAGO Application: Plastic Technology Center (SKZ) in Würzburg, Germany 522 WAGO Application: Plastic Technology Center (SKZ) in Würzburg, Germany WAGO Products: WAGO-I/O-SYSTEM with ETHERNET Controllers, DALI and EnOcean Components Wireless Technologie System Overview 524

More information

INTEGRATED CIRCUITS. PCA bit I 2 C LED dimmer. Product data Supersedes data of 2003 Feb May 02. Philips Semiconductors

INTEGRATED CIRCUITS. PCA bit I 2 C LED dimmer. Product data Supersedes data of 2003 Feb May 02. Philips Semiconductors INTEGRATED CIRCUITS Supersedes data of 2003 Feb 26 2003 May 02 Philips Semiconductors DESCRIPTION The is a 16-bit I 2 C-bus and SMBus I/O expander optimized for dimming LEDs in 256 discrete steps for Red/Green/Blue

More information

Power supply CP-D 12/2.1

Power supply CP-D 12/2.1 2CDC 271 025 F0t07 a OUTPUT ++/ : terminals output Features Rated output voltage 12 V DC Output voltage adjustable via front face potentiometer OUTPUT Adjust Rated output current 2.1 A Rated output power

More information

The wireless alternative to expensive cabling...

The wireless alternative to expensive cabling... The wireless alternative to expensive cabling... ELPRO 905U Wireless Solutions for Process Applications New Products... New Solutions The ELPRO 905U range of telemetry modules provide remote monitoring

More information

DRG-Series. Digital Radio Gateway. Tait P25 CCDI Tier-2 (TM9400 Series Mobile Radio) Digital Radio Supplement

DRG-Series. Digital Radio Gateway. Tait P25 CCDI Tier-2 (TM9400 Series Mobile Radio) Digital Radio Supplement DRG-Series Digital Radio Gateway Tait P25 CCDI Tier-2 (TM9400 Series Mobile Radio) Digital Radio Supplement DRG-Series Digital Radio Gateway Tait P25 CCDI Tier-2 (TM9400 Series Mobile Radio) Digital Radio

More information

Instabus Radio Control Converter Installation Instructions

Instabus Radio Control Converter Installation Instructions Order no.: 0868 00 System rmation This device is a product of the Instabus EIB system and complies with EIBA directives. Detailed technical knowledge obtained in Instabus training courses is a prerequisite

More information

1. Function. Universal dimming actuator REG-K/2x230/ 300 W. Universal dimming actuator REG-K/230/ 500 W. Universal dimming actuator REG-K/230/ 1000 W

1. Function. Universal dimming actuator REG-K/2x230/ 300 W. Universal dimming actuator REG-K/230/ 500 W. Universal dimming actuator REG-K/230/ 1000 W L L N N on error RUN 1 2 3 4 KNX EIB 1 1 1 1 Chapter 9: Dimming actuators/control units Chapter 9:Dimming actuators/control unitsart. no.6493xxas of 10/079.2Universal dimming actuators Universal dimming

More information

Application Note. CMMP Endless positioning. Using CMMP-AS in combination with multiturn encoders for applications, which require endless positioning.

Application Note. CMMP Endless positioning. Using CMMP-AS in combination with multiturn encoders for applications, which require endless positioning. Application Note CMMP Endless positioning Using CMMP-AS in combination with multiturn encoders for applications, which require endless positioning. CMMP-AS 00003 Title... CMMP Endless positioning Version....0

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

Data sheet. Function description. Benefits

Data sheet. Function description. Benefits uminaire-integrated modules SESOTEC MB Sensor Modules 110042808 SESOTEC MB HF1 COM1 110051733 SESOTEC MB HF1 DAI 110059684 SESOTEC MB HF2 COM1 Function description With the new HF sensor modules, you,

More information

animeo KNX 4 DC 2 A Motor Controller WM 24 V DC Installation manual

animeo KNX 4 DC 2 A Motor Controller WM 24 V DC Installation manual somfy.com animeo KNX 4 DC 2 A Motor Controller WM 24 V DC Installation manual Ref. 1860128 2008-2013, SOMFY SAS. ALL RIGHTS RESERVED. REF. 5059105C - 2013/04/30 Table of contents 1 2 3 4 5 6 7 8 9 10 Introduction...

More information

Magnetic absolute encoder GEL 2035 Serial interface (SSI), 24 Bit

Magnetic absolute encoder GEL 2035 Serial interface (SSI), 24 Bit Magnetic absolute encoder GEL 2035 Serial interface (SSI), 24 Bit Technical information Version 03.09 Resolution: Precision: 0.8 Signal pattern: Singleturn (ST): Multiturn (MT): up to 24 Bit SSI and SSI

More information

English RACON SERIES II RADIO CONTROL SERVICE MANUAL

English RACON SERIES II RADIO CONTROL SERVICE MANUAL English 22.2.2007 RACON SERIES II RADIO CONTROL SERVICE MANUAL Read the instructions supplied with the product before installation and commissioning. Keep the instructions in a safe place for future reference.

More information

animeo KNX 4 AC Motor Controller 31. March 2016 WM/DRM V AC

animeo KNX 4 AC Motor Controller 31. March 2016 WM/DRM V AC 2011-2016, SOMFY SAS 50 avenue du Nouveau Monde 74300 Cluses France 1/57 Table of contents 1 Definitions... 4 1.1 Manual Command... 4 1.2 Automatic Command... 4 1.3 US push button ergonomics... 4 1.4 EU

More information

Electronic Circuit Breaker BASIC FIX

Electronic Circuit Breaker BASIC FIX Electronic Circuit Breaker - Number of available output channels: 2 / 4 - Non-adjustable rated current via channel - High capacitive loads start up reliably - The channels switch on sequentially and loaddependent

More information

HG G B. Gyroscope. Gyro for AGV. Device Description HG G B. Innovation through Guidance. Autonomous Vehicles

HG G B. Gyroscope. Gyro for AGV. Device Description HG G B.   Innovation through Guidance. Autonomous Vehicles Device Description HG G-84300-B Autonomous Vehicles Gyroscope HG G-84300-B Gyro for AGV English, Revision 06 Date: 24.05.2017 Dev. by: MG/WM/Bo Author(s): RAD Innovation through Guidance www.goetting-agv.com

More information

Drive System Application

Drive System Application Drive System Application Energy-saving mode with MICROMASTER 440 and SINAMICS Application description for MICROMASTER 440 and SINAMICS Warranty, liability and support Note The Application Examples are

More information

The wireless alternative to expensive cabling...

The wireless alternative to expensive cabling... The wireless alternative to expensive cabling... ELPRO 105U Wireless Solutions for Process Applications New Products... New Solutions The ELPRO 105U range of wireless I/O provides a low cost alternative

More information