<@description@>
This placeholder will show up in the app configuration screen as a days-of-week and time-of-the-day picker.In the KumoApp code, simply assign its "Task" property to a function to be executed at scheduled time. For example,
var thermostat = <#thermostat_[62]_N#>; <@Turn on at@>.Task=function () { thermostats.forEach(function(t){t.restore();}); }; <@Turn off at@>.Task=function () { thermostats.forEach(function(t){t.turnoff();}); };
The user will pick in the app one or more thermostats, and the schedule to turn them on and off.