aiie/teensy/teensy-speaker.h

28 lines
469 B
C
Raw Normal View History

2017-02-20 18:55:16 +00:00
#ifndef __TEENSY_SPEAKER_H
#define __TEENSY_SPEAKER_H
#include "physicalspeaker.h"
class TeensySpeaker : public PhysicalSpeaker {
public:
TeensySpeaker(uint8_t pinNum);
virtual ~TeensySpeaker();
virtual void toggle();
2017-02-20 18:55:16 +00:00
virtual void maintainSpeaker(uint32_t c);
virtual void beginMixing();
virtual void mixOutput(uint8_t v);
2017-02-20 18:55:16 +00:00
private:
uint8_t speakerPin;
bool toggleState;
bool needsToggle;
2017-02-20 18:55:16 +00:00
uint32_t mixerValue;
uint8_t numMixed;
2017-02-20 18:55:16 +00:00
};
#endif