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.

Multiple GA send on 3 times
#1
If I have 700 1-bit GA, when they switch state I need it to happen 3 times, with 1 sec delay, what is the easiest way of doing this?
We have some KNX relays that is partially defective, and this is a quick workaround to get this working before the manufacture and the customer finds out if all the relays needs to be exchanged.

Best regards

Simon
Reply
#2
Try this, Tag all your bit objects with a TAG and then create event based script triggered by your TAG.
As execution mode select Last instance and use this script

Code:
if event.sender ~= "se" then
    value = event.getvalue()
    os.sleep(1)
    grp.write(event.dst, value)
    os.sleep(1)
    grp.write(event.dst, value)
    os.sleep(1)
    grp.write(event.dst, value)
end
------------------------------
Ctrl+F5
Reply


Forum Jump: