Hello,
I'm making an Arduino controlled sprinkler system using an ethernet shield so that it can be controlled through the web. I'm working on the schedule and wonder if there is a way to use the timeAlarms library in a way so that the user can change the dates/times of the alarms? What I have in mind is to create a number of functions such as:
Alarm.alarmRepeat(h1,m1,0, ZoneOne);
Alarm.alarmRepeat(h2,m2,0, ZoneTwo);
...
...
And the user will have input boxes for each zone to change the time, date, etc. However, from what I understand the alarmRepeat function is supposed to be called in the setup(), not from the loop(), so would this even be possible?
Thanks for any help!
-Ryan