mirror of
https://github.com/JorjBauer/aiie.git
synced 2024-11-22 15:31:41 +00:00
51 lines
922 B
C++
51 lines
922 B
C++
#include <Arduino.h>
|
|
#include "teensy-speaker.h"
|
|
|
|
#include "globals.h"
|
|
|
|
TeensySpeaker::TeensySpeaker(uint8_t pinNum) : PhysicalSpeaker()
|
|
{
|
|
toggleState = false;
|
|
needsToggle = false;
|
|
speakerPin = pinNum;
|
|
pinMode(speakerPin, OUTPUT); // analog speaker output, used as digital volume control
|
|
mixerValue = numMixed = 0;
|
|
}
|
|
|
|
TeensySpeaker::~TeensySpeaker()
|
|
{
|
|
}
|
|
|
|
void TeensySpeaker::toggle()
|
|
{
|
|
needsToggle = true;
|
|
}
|
|
|
|
void TeensySpeaker::maintainSpeaker(uint32_t c)
|
|
{
|
|
if (needsToggle) {
|
|
toggleState = !toggleState;
|
|
needsToggle = false;
|
|
}
|
|
|
|
mixerValue += (toggleState ? 0x1FF : 0x00);
|
|
|
|
mixerValue >>= (16-g_volume);
|
|
|
|
// FIXME: glad it's DAC0 and all, but... how does that relate to the pin passed in the constructor?
|
|
analogWriteDAC0(mixerValue);
|
|
}
|
|
|
|
void TeensySpeaker::beginMixing()
|
|
{
|
|
mixerValue = 0;
|
|
numMixed = 0;
|
|
}
|
|
|
|
void TeensySpeaker::mixOutput(uint8_t v)
|
|
{
|
|
mixerValue += v;
|
|
numMixed++;
|
|
}
|
|
|