This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm that you accept these cookies being set.

External writing to Scheduler
#1
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?
Reply
#2
It depend what you mean by control, enabling/disabling a scheduler is there by default.
------------------------------
Ctrl+F5
Reply
#3
(21.12.2022, 14:24)Daniel Wrote: It depend what you mean by control, enabling/disabling a scheduler is there by default.

I want to modify time and possibly date..
Reply
#4
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:
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
Reply


Forum Jump: