Alarm Clock

Dependencies:   TextLCD mbed

Fork of SmartRise_MBED by Austin Sloop

TimeControl.h

Committer:
asloop18
Date:
2016-01-26
Revision:
6:73866b51e0b7
Parent:
4:33f3750fe70a

File content as of revision 6:73866b51e0b7:

/**********************************************************
* 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