1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-08-17 06:42:21 +03:00

Robot Control library to format 1.5 rev.2

This commit is contained in:
Cristian Maglie
2014-01-01 23:45:39 +01:00
parent a80b2b1d53
commit 03a7cf3212
48 changed files with 2 additions and 4 deletions

View File

@@ -0,0 +1,17 @@
#ifndef _SQUAWKSD_H_
#define _SQUAWKSD_H_
#include <Squawk.h>
#include "Fat16.h"
class SquawkSynthSD : public SquawkSynth {
private:
Fat16 f;
public:
inline void play() { Squawk.play(); };
void play(Fat16 file);
//void convert(Fat16 in, Fat16 out);
};
extern SquawkSynthSD SquawkSD;
#endif