Part 1 of our ECE 4180 Final Project

Dependencies:   4DGL-uLCD-SE EthernetInterface MODSERIAL NTPClient mbed-rtos mbed

Committer:
mohit1234
Date:
Fri May 01 18:07:34 2015 +0000
Revision:
0:9fa2874be5e4

        

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mohit1234 0:9fa2874be5e4 1 #include <string>
mohit1234 0:9fa2874be5e4 2 #include "mbed.h"
mohit1234 0:9fa2874be5e4 3
mohit1234 0:9fa2874be5e4 4 typedef struct alarmTime {
mohit1234 0:9fa2874be5e4 5 int hour;
mohit1234 0:9fa2874be5e4 6 int minute;
mohit1234 0:9fa2874be5e4 7 std::string full;
mohit1234 0:9fa2874be5e4 8 } alarmTime;
mohit1234 0:9fa2874be5e4 9
mohit1234 0:9fa2874be5e4 10 alarmTime getAlarmTime();
mohit1234 0:9fa2874be5e4 11 std::string isItAlarmTime(time_t*);