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

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Recorder.h Source File

Recorder.h

00001 #ifndef RECORDER_H
00002 #define __RECORDER_H
00003 
00004 #include "mbed.h"
00005 #include "wavfile.h"
00006 
00007 int play(const char *filename);
00008 int rec(const char *filename, const int nsec);
00009 
00010 #endif