mirror of
https://github.com/JorjBauer/aiie.git
synced 2024-11-02 07:04:50 +00:00
26 lines
469 B
C++
26 lines
469 B
C++
#ifndef __SDLSPEAKER_H
|
|
#define __SDLSPEAKER_H
|
|
|
|
#include <stdio.h>
|
|
#include <stdint.h>
|
|
#include "physicalspeaker.h"
|
|
|
|
class SDLSpeaker : public PhysicalSpeaker {
|
|
public:
|
|
SDLSpeaker();
|
|
virtual ~SDLSpeaker();
|
|
|
|
virtual void begin();
|
|
|
|
virtual void toggle(uint32_t c);
|
|
virtual void maintainSpeaker(uint32_t c, uint64_t microseconds);
|
|
virtual void beginMixing();
|
|
virtual void mixOutput(uint8_t v);
|
|
|
|
private:
|
|
uint8_t mixerValue;
|
|
bool toggleState;
|
|
};
|
|
|
|
#endif
|