06.03.2024, 11:27
Use this:
Code:
function dalidiagtostring(value)
local stat
if value.ballasterror then
stat = 'ECG error'
elseif value.lamperror then
stat = 'Lamp error'
else
stat = 'OK'
end
return string.format('Address %d %s', value.address + 1, stat)
end