Kerstverlichting aan- en uitschakelen

123456789101112131415161718192021-- dzvents script voor kerstverlichting: AAN bij zonsondergang, UIT na middernachtreturn {on = {timer = {'at sunset', -- gebruikt info over zonsondergang van Domoticz'at 00:01',}},execute = function(domoticz, timer)if domoticz.time.matchesRule('at sunset') thendomoticz.devices('Buitenstopcontact').switchOn()bericht = 'De lampjes gaan aan'elsedomoticz.devices('Buitenstopcontact').switchOff()bericht = 'De lampjes gaan uit'enddomoticz.notify(bericht, 'statusmelding', PRIORITY_NORMAL, nil, nil, domoticz.NSS_PUSHOVER)end}