Files
Domoticz/dzVents/examples/respond to switch.lua
2025-03-06 11:09:58 +01:00

15 lines
224 B
Lua

return {
active = true,
on = {
devices = {
'My switch'
}
},
execute = function(domoticz, mySwitch)
if (mySwitch.state == 'On') then
domoticz.notify('Hey!', 'I am on!', domoticz.PRIORITY_NORMAL)
end
end
}