22.12.2022, 08:46
This is rather complicated task. Scheduler event can be updated by script but all the event parameters must be provided. In BACnet we don't support time object so all values would have to be converted to numeric format and then back.
Example how to modify event start hour and minute
Example how to modify event start hour and minute
Code:
id = 123
start_hour = 12
start_min = 30
db:update('scheduler_events', {
start_hour = start_hour,
start_min = start_min
}, { id = id })
io.writefile('/tmp/lm-scheduler-clear', '')
------------------------------
Ctrl+F5
Ctrl+F5