25.06.2017, 09:12
Hi,
What you can is create a event based script on the ascii object and make some if statements:
Add a byte object 1/1/1 and add it to your visu and create the needed additional icons on value 1 and 2
BR,
Erwin
What you can is create a event based script on the ascii object and make some if statements:
Code:
value = event.getvalue()
if value == "yourasciistring1" then
grp.update('1/1/1', 1)
elseif value == "yourasciistring2" then
grp.update('1/1/1', 2)
else
grp.update('1/1/1', 0)
end
BR,
Erwin