Logic Machine Forum
Repeat value output - Printable Version

+- Logic Machine Forum (https://forum.logicmachine.net)
+-- Forum: LogicMachine eco-system (https://forum.logicmachine.net/forumdisplay.php?fid=1)
+--- Forum: Application Store (https://forum.logicmachine.net/forumdisplay.php?fid=11)
+--- Thread: Repeat value output (/showthread.php?tid=5171)



Repeat value output - Quattro - 21.12.2023

I would like the value output from the "Greater than" block (1/2/5), shall be repeatet every 30min, how do I do that?


RE: Repeat value output - Daniel - 22.12.2023

Create scheduled script and set minutes to */30  everything else should be * and use this script
Code:
value = grp.getvalue('1/2/5')

grp.write('1/2/5', value)



RE: Repeat value output - Quattro - 26.12.2023

Thanks