16.08.2022, 09:06
Hi gyus,
How could I read a 6byte alarm code from the knx bus (Please , see attached )
How could I read a 6byte alarm code from the knx bus (Please , see attached )
6byte - DPT
|
16.08.2022, 09:06
Hi gyus,
How could I read a 6byte alarm code from the knx bus (Please , see attached )
16.08.2022, 09:34
You can use "14 byte ASCII string" data type. In event script you can check the event.datahex variable contents to determine what kind of alarm it is.
16.08.2022, 09:42
16.08.2022, 09:44
Code: 1234567 alarm = event.datahex:sub(3, 12)
if alarm == '000A030C05' then
log('jammed')
elseif alarm == '0101020C05' then
log('backup')
end
16.08.2022, 10:11
|
« Next Oldest | Next Newest »
|