Yes i was able to upload to the board, but I wasnt sure if the pins were correct as the leds didnt do anything etc
I got it working, I had to use generic CDC USB support... led blinking now and tap temp works great. thanks
not sure what button2 is doing, is there an easy way to setup bypass for each effect?
I want to have something like delay with tap tempo, and reverb with just output volume level but to be able to turn off each effect independently
for example in this bit of code, there is a bypass for flanger (
https://github.com/skngh/DaisyTerrarium ... langerSeed)
void ProcessADC()
{
gFlangerDepth = hw.adc.GetFloat(knobOne);
gFlangerFreq = hw.adc.GetFloat(knobTwo);
gFlangerFeedback = hw.adc.GetFloat(knobThree);
flanger.SetLfoDepth(gFlangerDepth);
flanger.SetLfoFreq(gFlangerFreq);
flanger.SetFeedback(gFlangerFeedback);
gBypass ^= bypassButton.RisingEdge();
}
void AudioCallback(AudioHandle::InputBuffer in, AudioHandle::OutputBuffer out, size_t size)
{
ProcessADC();
for (size_t i = 0; i < size; i++)
{
if(!gBypass)
out[0]
= flanger.Process(in[0]);
else
out[0] = in[0];
}
}