It does not seem to be capable of going above 3600000 milli-seconds (ie 1 hr).
I need 2hr, 3hr and 4 hr intervals.
..it's for turning the heating onto manual for these time intervals while out of the house..
Can anyone suggest how to do this?
Thank you.
function writeled1low ()
gpio.write(led1, gpio.HIGH);
gpio.write(led2, gpio.HIGH);
end
local _on,_off = "",""
if(_GET.pin == "1hrOn")then
gpio.write(led1, gpio.LOW);
gpio.write(led2, gpio.LOW);
tmr.stop(1);
tmr.alarm(1, 3600000, 1, writeled1low);
end