Tadao Iida / Mbed 2 deprecated music

Dependencies:   TextLCD mbed SDFileSystem

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers MySound.h Source File

MySound.h

00001 #ifndef MBED_MYSOUND_H
00002 #define MBED_MYSOUND_H
00003 
00004 #include "mbed.h"
00005 
00006 class MySound {
00007     
00008 public :   
00009     MySound(PinName out);
00010     void play(char,int,char);
00011     
00012 protected:
00013     DigitalOut _out;    
00014 };
00015 
00016 #endif