Mbed Clock application using an NTP connection to get internet time and a terminal interface to send commands

Dependencies:   4DGL-uLCD-SE EthernetInterface NTPClient mbed-rtos mbed SDFileSystem wavfile

Committer:
dudanian
Date:
Mon Dec 08 23:30:49 2014 +0000
Revision:
2:c939d0501184
Parent:
1:c47a2f0816bb
Working better

Who changed what in which revision?

UserRevisionLine numberNew contents of line
dudanian 1:c47a2f0816bb 1 #ifndef RECORDER_H
dudanian 1:c47a2f0816bb 2 #define __RECORDER_H
dudanian 1:c47a2f0816bb 3
dudanian 1:c47a2f0816bb 4 #include "mbed.h"
dudanian 1:c47a2f0816bb 5 #include "wavfile.h"
dudanian 1:c47a2f0816bb 6
dudanian 2:c939d0501184 7 int play(const char *filename);
dudanian 1:c47a2f0816bb 8 int rec(const char *filename, const int nsec);
dudanian 1:c47a2f0816bb 9
dudanian 1:c47a2f0816bb 10 #endif