Alarm Clock

Dependencies:   TextLCD mbed

Fork of SmartRise_MBED by Austin Sloop

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers TimeControl.h Source File

TimeControl.h

00001 /**********************************************************
00002 * Header for Time management and display for SmartRISE-MBED 
00003 * 
00004 * LCD connects RSp28 Ep27, D1-4 p23-26.
00005 * Control buttons connected p6-10
00006 *
00007 **********************************************************/
00008 #ifndef TimeControl_h
00009 #define TimeControl_h
00010 
00011 #include "mbed.h"
00012 
00013 char checkAlarm(void);      //function to check if programmed alarm time matches current time
00014 void timeDisplay(void);
00015 void alarmProg(void);
00016 void timeProg(void);
00017 void time_init(void);       //Declare time var
00018 
00019 
00020 #endif