I'm struggeling with a strange Issue. The Domoticz Device isn't triggering my Script.
The Hardware is a Fibaro Double Switch 2, wich is working fine. I get the state in Domoticz.
In Open-Zwave the created device was triggering my Script, after changing to Z-Wavejs-UI it doesn't. It is only for Switch 1, Switch 2 is triggering the Script like expected.
Code: Select all
return {
on = {
devices = {
'Switch 1',
},
},
logging = {
level = domoticz.LOG_ERROR,
marker = "Test"
},
execute = function(domoticz, device)
domoticz.log('done',domoticz.LOG_FORCE)
end
}