mirror of https://github.com/MLXXXp/Arduboy2.git
21 lines
286 B
C
21 lines
286 B
C
|
#ifndef ArduboyAudio_h
|
||
|
#define ArduboyAudio_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
|