mbed/ARM 活用事例 第3章 SDカードを使ってファイルを操作するプログラムを作る

Dependencies:   TextLCD mbed SDFileSystem

MySound.h

Committer:
sunifu
Date:
2011-10-04
Revision:
0:c743b6678d88

File content as of revision 0:c743b6678d88:

// --- MySound.h ---
#ifndef MBED_MY__SOUND_H
#define MBED_MY__SOUND_H

#include "mbed.h"

class MySound {
   
public :   
    MySound(PinName out); 
    
    void play(char,int,char);
    
protected:
    PwmOut _out;   
    Timer t; 
};

#endif