Posts: 238
	Threads: 66
	Joined: May 2018
	
Reputation: 
4
	 
	
	
		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?
	
	
	
	
		
	
 
 
	
	
	
		
	Posts: 5284
	Threads: 29
	Joined: Aug 2017
	
Reputation: 
237
	 
	
	
		It depend what you mean by control, enabling/disabling a scheduler is there by default.
	
	
	
------------------------------
Ctrl+F5
	
		
	
 
 
	
	
	
		
	Posts: 5284
	Threads: 29
	Joined: Aug 2017
	
Reputation: 
237
	 
	
	
		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