This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm that you accept these cookies being set.

Wiser - transfer string over BACnet IP
#2
Hi,

Just create a event based script on the KNX object and write a value to a virtual object and attach this script to it (now for 6 variable so you need to extend it):
Code:
value = event.getvalue()
if value == '7H-01' then
    grp.update('32/0/0', 1)
elseif value == 'BH-00' then
    grp.update('32/0/0', 2)
elseif value == 'BH-01' then
    grp.update('32/0/0', 3)
elseif value == 'BH-02' then
    grp.update('32/0/0', 4)
elseif value == 'BH-03' then
    grp.update('32/0/0', 5)
elseif value == 'BH-04' then
    grp.update('32/0/0', 6)
end

Inside the ES/AS you can create a trigger based script to decode them back to a string object.

BR,

Erwin
Reply


Messages In This Thread
RE: Wiser - transfer string over BACnet IP - by Erwin van der Zwart - 01.04.2019, 13:31

Forum Jump: