mirror of
https://github.com/JorjBauer/aiie.git
synced 2024-11-22 15:31:41 +00:00
18 lines
308 B
C++
18 lines
308 B
C++
#ifndef __PHYSICALSPEAKER_H
|
|
#define __PHYSICALSPEAKER_H
|
|
|
|
#include <stdint.h>
|
|
|
|
class PhysicalSpeaker {
|
|
public:
|
|
virtual ~PhysicalSpeaker() {}
|
|
|
|
virtual void toggle() = 0;
|
|
virtual void maintainSpeaker(uint32_t c) = 0;
|
|
virtual void beginMixing() = 0;
|
|
virtual void mixOutput(uint8_t v) = 0;
|
|
|
|
};
|
|
|
|
#endif
|