1
0
mirror of https://github.com/arduino/Arduino.git synced 2024-12-03 14:24:15 +01:00
Arduino/hardware/arduino/avr/libraries/Robot_Control/SquawkSD.h

17 lines
305 B
C
Raw Normal View History

2013-05-15 10:47:17 +02:00
#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