ST_BACnet_Time
PLC mapping of BACnet data type Time. See BACnet specification DIN EN ISO 16484-5 for data type BACnetDateTime.
TYPE ST_BACnet_Time :
STRUCT
nHour : BYTE:=16#FF;
nMinute : BYTE:=16#FF;
nSecond : BYTE:=16#FF;
nHundredths : BYTE:=16#FF;
END_STRUCT
END_TYPE
nHour
: Possible values for hour: 0 to 23; 255 corresponds to undefined (or each hour)
nMinute
: Possible values for minute: 0 to 59; 255 corresponds to undefined (or each minute)
nSecond
: Possible values for second: 0 to 59; 255 corresponds to undefined (or each second)
nHundredths
: Possible values for hundredths of a second: 0 to 99; 255 corresponds to undefined (or each hundredth of a second)