![]() |
Add scheduler with a single click ? - Printable Version +- Logic Machine Forum (https://forum.logicmachine.net) +-- Forum: LogicMachine eco-system (https://forum.logicmachine.net/forumdisplay.php?fid=1) +--- Forum: General (https://forum.logicmachine.net/forumdisplay.php?fid=2) +--- Thread: Add scheduler with a single click ? (/showthread.php?tid=5513) |
Add scheduler with a single click ? - Simuzer - 14.07.2024 Hi all, i can try adding scheduler into LM. This example, there are 3 lamps and 3 sensors. And they a lot of my project in 3 LM. (over 500 objects for scheduler) how to add schedule each lamp and sensor? One by one ? Or, Is there a shortcut for scheduler to the object on the page? Can we automatically add scheduler with a single click, as seen in the picture below? thanks all you. RE: Add scheduler with a single click ? - admin - 15.07.2024 Can be done via a script. This example creates a scheduler for objects from 0/0/1 to 0/0/5. Code: webrequest = require('webrequest') RE: Add scheduler with a single click ? - Simuzer - 16.07.2024 Unfortunately this is not suitable for me. Because the addresses do not go in a certain order and the names must also be meaningful. But if it was a visual addition then things would be great. I hope such an option will be added in the future. RE: Add scheduler with a single click ? - admin - 16.07.2024 The script can modified to create schedulers for a given tag and use object names as scheduler names. Alternatively a table with group address -> scheduler name mapping can be used to quickly create multiple schedulers. RE: Add scheduler with a single click ? - Simuzer - 17.07.2024 (15.07.2024, 06:39)admin Wrote: Can be done via a script. This example creates a scheduler for objects from 0/0/1 to 0/0/5. how can i add object name for objects from 32/2/1 to 32/2/252. I don't understand how to use the code below in the code above. Code: name = grp.find(event.dst).name i want to use scheduler names as the name of the scheduler. i added it manually. RE: Add scheduler with a single click ? - Daniel - 17.07.2024 Code: webrequest = require('webrequest') RE: Add scheduler with a single click ? - bvanden - 30.03.2025 I would like to know who do we manage to add sub-items : - active - name - run at (ezg specific time, sunrise, sunset) - start time - days of the week (all, Mo, Tu, ... Su) - week days of the month (all, 1st, 2nd, ...last) - ... - value RE: Add scheduler with a single click ? - admin - 31.03.2025 Code: webrequest = require('webrequest') RE: Add scheduler with a single click ? - xxyzz - 04.04.2025 Hi, i was just wondering how to add entries to the Holiday Schedule via script? It' the time of the year where it may be cool to create an automatic calculation for Easter etc. Thanks for your Help! RE: Add scheduler with a single click ? - admin - 04.04.2025 Code: webrequest = require('webrequest') RE: Add scheduler with a single click ? - sgraystar - 07.05.2025 Thanks Admin. When updating an existing holiday with holidays-save, or an event with events-save, is there a rule that we should send all data elements as the gui seems to do (SE 5500 AC2 v2.1.0), or is it allowed to only send the changed elements? Cheers RE: Add scheduler with a single click ? - admin - 07.05.2025 Should be like this for updating but you need to test it yourself. - holidays-save: name and type fields are optional, everything else is required - event-save: active and year fields are required RE: Add scheduler with a single click ? - sgraystar - 08.05.2025 OK, thanks. |