schedule for multiple GA - Printable Version +- Logic Machine Forum (https://forum.logicmachine.net) +-- Forum: LogicMachine eco-system (https://forum.logicmachine.net/forumdisplay.php?fid=1) +--- Forum: Scripting (https://forum.logicmachine.net/forumdisplay.php?fid=8) +--- Thread: schedule for multiple GA (/showthread.php?tid=3763) |
schedule for multiple GA - khalil - 21.12.2021 hello I want to use a schedule to turn off some offices lights, but offices might vary so I used script like this : Is there any recommendation, while the table list will be more (around 50 items) Code: value = event.getvalue() regards, RE: schedule for multiple GA - admin - 21.12.2021 Use tags. This way there's a short delay between writes to each object so the bus is not overloaded. Code: value = event.getvalue() RE: schedule for multiple GA - khalil - 21.12.2021 (21.12.2021, 08:44)admin Wrote: Use tags. This way there's a short delay between writes to each object so the bus is not overloaded. OK many thanks admin |