Arduboy2/src/ArduboyAudio.h

21 lines
288 B
C
Raw Normal View History

#ifndef ARDUBOY_AUDIO_H
#define ARDUBOY_AUDIO_H
#include <Arduino.h>
#include <EEPROM.h>
class ArduboyAudio
{
public:
void static begin();
void static on();
void static off();
void static saveOnOff();
bool static enabled();
protected:
bool static audio_enabled;
};
#endif