EIB_2OCTET_FLOAT_SEND

EIB_2OCTET_FLOAT_SEND 1:

This function block sends a 2-byte float EIB value to the set group address. An IEC61131-3 real value is available as input value. The data are only transferred if there is a change. If the value changes again within 1 second, new data are only sent to the EIB device after another second has passed (see diagram). No new EIB telegram is sent if the value changes within the "min. send time" but falls back to the old, already sent value within the "min. send time".

VAR_INPUT

Group_Address  : EIB_GROUP_ADDR;
rData          : REAL;
str_Rec        : EIB_REC;

Group_Address: Group address to which the data are sent (see EIB_GROUP_ADDR).

rData: The data value in REAL. This is automatically converted to an EIB 2OCTET FLOAT value.

str_Rec: The data structure with which the KL6301() function block must be linked (see EIB_REC).

VAR_OUTPUT

bError         : BOOL;
iErrorID       : EIB_ERROR_CODE;

bError: The bError output becomes TRUE as soon as an error occurs. The error is described via the variable iErrorID.

iErrorID: The output issues an error code when an error occurs (see EIB_ERROR_CODE). Simultaneously bError is TRUE.

EIB_2OCTET_FLOAT_SEND 2: