Time Library added to Playground

? timerRepeat is only in seconds and not formatted like alarmRepeat ?
You should be able to set timers just like alarms, did you try something like : Alarm.timerRepeat( 1,30,0, TimerTask); // set timer to repeat every 1 hour and 30 minutes

I see..
Alarm.timerRepeat(1, 0, Repeats);
does not work
but
Alarm.timerRepeat( 0, 1, 0, Repeats);
does.

thank you :smiley: