Schedule has started or stopped

From wiki.netio-products.com
Jump to navigation Jump to search

Triggered when selected schedule starts. Arguments are stored in table event.args

Arguments

  • scheduleActive true when schedule is active, false otherwise
  • scheduleId schedule ID

Print arguments

-- print all arguments
for i, v in pairs(event.args) do
  logf("%s: %s",tostring(i),tostring(v))
end