mini RTOS [sic]

Hi JB,

dtAlarms.createTimer(AlarmHMS(12,30,0), OnTimer2Tick);

is a timer, it will call OnTimer2Tick 12 and a half hours after it is set using the above code.

If you want an alarm that triggers at 12:30 and say 3:30 every day you want this code:

dtAlarms.createAlarm(AlarmHMS(12,30,0), OnTimer2Tick);
dtAlarms.createAlarm(AlarmHMS(15,30,0), OnTimer2Tick);