Alarm Clock

Dependents:   IF-SmartClock

Revision:
4:864d5c5f98ee
Parent:
1:d544fbfb330c
--- a/AlarmClock.h	Sun Jul 05 11:34:29 2015 +0000
+++ b/AlarmClock.h	Sun Nov 22 08:44:38 2015 +0000
@@ -14,6 +14,7 @@
     ~AlarmClock();
     bool getAlarm(int *h, int *min, int *sec) ;
     bool setAlarm(int h, int min, int sec) ;
+    void alarmAhead(int sec) ;
     void alarmTone(bool) ;
     void poll(void) ;
     
@@ -36,6 +37,7 @@
     bool minB_stat ;
     bool newAlarmTime ;
     bool timeMatched ;
+    int  AlarmAhead ;
 } ;
 
 #endif