-
Autor
I have a Schedule with set parameter the toggle_after i i watch in addEventHandler get ID of Schedule after call event from toggle_after.
But I don't think this ID is being sent. How to do it. It's a big pity if this information is not sent after toghle_after.
Thank you
Code
Shelly.call(
"Schedule.Create",
{
enable: true,
"timespec": "0 32 8 * * SUN,MON,TUE,WED,THU,FRI,SAT",
calls: [
{
"method": "Switch.Set",
"params": {
"id": 0,
"on": true,
"toggle_after": CONFIG.toggleAfter
}
}
],
});
Shelly.addEventHandler(
function (event, ud) {
if (event && event.info) {
if(event.info.state == false){
console.log('OFF');
console.log(event.info);
console.log(event.info.id);
};
}
},
null
);
Alles anzeigen