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:
Tue Dec 09 16:28:38 2014 +0000
Revision:
6:23c3adb0470d
Parent:
2:c939d0501184
changed server to txt file

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