Trying to make some simple script to just send the value of one of tempsensors to Prowl or email at 06:00. But I'm stuck
Do I have to have some if-condition?
Thankful for help
Code: Select all
return {
on = {
timer = { at '14:12' },
}
},
execute = function(domoticz)
domoticz.notify('Dagens Utetemperatur!', 'Current value is ' .. 'Utetemp01'.temperature, domoticz.PRIORITY_NORMAL)
end
end
}