Files
Domoticz/dzVents/examples/templates/UserVariable.lua
2025-03-06 11:09:58 +01:00

11 lines
199 B
Lua

return {
on = {
variables = {
'myUserVariable'
}
},
execute = function(domoticz, variable)
domoticz.log('Variable ' .. variable.name .. ' was changed', domoticz.LOG_INFO)
-- code
end
}