Kerstverlichting aan- en uitschakelen

Gepubliceerd door Robot One op

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
-- dzvents script voor kerstverlichting: AAN bij zonsondergang, UIT na middernacht
return {
on = {
timer = {
'at sunset', -- gebruikt info over zonsondergang van Domoticz
'at 00:01',
}
},
execute = function(domoticz, timer)
if domoticz.time.matchesRule('at sunset') then
domoticz.devices('Buitenstopcontact').switchOn()
bericht = 'De lampjes gaan aan'
else
domoticz.devices('Buitenstopcontact').switchOff()
bericht = 'De lampjes gaan uit'
end
domoticz.notify(bericht, 'statusmelding', PRIORITY_NORMAL, nil, nil, domoticz.NSS_PUSHOVER)
end
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
Categorieën: