22.01.2022, 09:07
(This post was last modified: 22.01.2022, 09:10 by Erwin van der Zwart.)
What you can do is create a boolean start/stop object and add this script to it:
and add a resident script called 'Pump Interval' (set it to 0 seconds) and add this script to it:
BR,
Erwin
Code:
script.set('Pump Interval', event.getvalue())
Code:
pump_address = '1/1/1'
grp.checkwrite(pump_address, true)
os.sleep(3600)
grp.checkwrite(pump_address, false)
os.sleep(1800)
Erwin