15 lines
224 B
Lua
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
|
|
}
|