Alarm Clock

Dependencies:   TextLCD mbed

Fork of SmartRise_MBED by Austin Sloop

TimeControl.h

Committer:
pstephens18
Date:
2016-01-27
Revision:
13:2ba69c3dc08a
Parent:
6:73866b51e0b7

File content as of revision 13:2ba69c3dc08a:

/**********************************************************
* Header for Time management and display for SmartRISE-MBED 
* 
* LCD connects RSp28 Ep27, D1-4 p23-26.
* Control buttons connected p6-10
*
**********************************************************/
#ifndef TimeControl_h
#define TimeControl_h

#include "mbed.h"

char checkAlarm(void);      //function to check if programmed alarm time matches current time
void timeDisplay(void);
void alarmProg(void);
void timeProg(void);
void time_init(void);       //Declare time var


#endif