You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please check AudioZeroClass::end(). Output to pin A0 seems to still be active after calling the end() method. I changed it to analogRead(A0) in my local copy and it seems to work much better. :-)
Thanks for the great work!
klw1971
--
void AudioZeroClass::end() {
tcDisable();
tcReset();
analogWrite(A0, 0); --->> Works much better with analogRead(A0) on a Feather M0
}
The text was updated successfully, but these errors were encountered:
It might happen if you haven't set the pinMode() in the setup
I know its too late, but have you double checked that, because I tried to do so and it works well, you can get my code on my page,i'll post it there
Please check AudioZeroClass::end(). Output to pin A0 seems to still be active after calling the end() method. I changed it to analogRead(A0) in my local copy and it seems to work much better. :-)
Thanks for the great work!
klw1971
--
void AudioZeroClass::end() {
tcDisable();
tcReset();
analogWrite(A0, 0); --->> Works much better with analogRead(A0) on a Feather M0
}
The text was updated successfully, but these errors were encountered: