16.11.2015, 08:16
thanks FatMax for your kind words, we are trying to improve every day!
As of your question, you need to create a virtual object in Object list e.g. 1/1/2. Then create event-based script for this grp address with the following content:
On visualization add 1/1/2 and it will do the job
As of your question, you need to create a virtual object in Object list e.g. 1/1/2. Then create event-based script for this grp address with the following content:
Code:
-- 1/1/1 is grp address which you want to turn on /off
grp.write('1/1/1', true)
os.sleep(0.1) -- pause for 0.1 second
grp.write('1/1/1', false)
On visualization add 1/1/2 and it will do the job