en gros en enlevant ce qui est pas util...
--[[
%% properties
%% events
423 ui.lblTime.value
%% globals
--]]
function tempFunc()
local currentDate = os.date("%H:%M")
local heure = fibaro:getValue(423, "ui.lblTime.value")
print(heure)
if currentDate == heure then fibaro:call(14, "turnOn") end
setTimeout(tempFunc, 60*1000)
end
tempFunc()