20.09.2023, 13:15
Just use a bit of logic in the middle, create an event script on a TAG that is connected to your scheduler and override..
Code:
schedulerstate = grp.getvalue('10/0/0')
overridestate = grp.getvalue('10/0/1')
if overridestate == true then
grp.checkwrite('10/0/2', overridestate)
else
grp.checkwrite('10/0/2', schedulerstate)
end