..ticz/scripts/dzVents/generated_scripts/Lys parkering.lua:18: unexpected symbol near '}'
Code: Select all
return {
on = {
devices = {'Lux_Fibaro', 'MotionSensor', },
},
execute = function(dz, item)
local LuxFibaro = dz.devices('Lux_Fibaro')
local Sensor = dz.devices('MotionSensor')
local light = dz.devices('Motorvarmer')
if Sensor.active and LuxFibaro.lux < 1 then
light.cancelQueuedCommands()
if dz.time.matchesRule("at 23:01-06:00") then
light.switchOn().checkFirst()
elseif Sensor.state == 'Off' or LuxFibaro.lux > 2 then
light.switchOff().afterMin(3)
end
end
}