source: rtos_arduino/trunk/arduino_lib/libraries/Robot_Control/src/SquawkSD.h@ 136

Last change on this file since 136 was 136, checked in by ertl-honda, 8 years ago

ライブラリとOS及びベーシックなサンプルの追加.

File size: 305 bytes
Line 
1#ifndef _SQUAWKSD_H_
2#define _SQUAWKSD_H_
3#include <Squawk.h>
4#include "Fat16.h"
5
6class SquawkSynthSD : public SquawkSynth {
7 private:
8 Fat16 f;
9 public:
10 inline void play() { Squawk.play(); };
11 void play(Fat16 file);
12 //void convert(Fat16 in, Fat16 out);
13};
14
15extern SquawkSynthSD SquawkSD;
16
17#endif
Note: See TracBrowser for help on using the repository browser.