21.12.2022, 12:20
Hello. Is it possible to control schedulers from GA's? I want loacl scheduler on the LM, but want to be able to modify these over modbus or bacnet. Or as an alternative, have support for Bacnet schedule and calendar?
External writing to Scheduler
|
21.12.2022, 12:20
Hello. Is it possible to control schedulers from GA's? I want loacl scheduler on the LM, but want to be able to modify these over modbus or bacnet. Or as an alternative, have support for Bacnet schedule and calendar?
21.12.2022, 14:24
It depend what you mean by control, enabling/disabling a scheduler is there by default.
------------------------------
Ctrl+F5
22.12.2022, 07:47
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 Code: 12345678910 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 |
« Next Oldest | Next Newest »
|