We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This is a simple and quite unintelligent bug. It's just hanging out there right in the middle of everything... so obvious... line 50
byte sampleRate = 400; //Options: 50, 100, 200, 400, 800, 1000, 1600, 3200
But a byte only counts to 255 and then rolls over to 0. So any sample rate over 200 would be...
Gotta say, I was pulling my hair out with the o'scope on the bench and everything. The .setup() receives an int in the sampleRate space. Easy fix.
.setup()
int
The text was updated successfully, but these errors were encountered:
Fix for #45
e4438ef
Thanks @biomurph! Fixed.
Sorry, something went wrong.
smiley face
No branches or pull requests
This is a simple and quite unintelligent bug.
It's just hanging out there right in the middle of everything... so obvious... line 50
But a byte only counts to 255 and then rolls over to 0.
So any sample rate over 200 would be...
Gotta say, I was pulling my hair out with the o'scope on the bench and everything.
The
.setup()
receives anint
in the sampleRate space. Easy fix.The text was updated successfully, but these errors were encountered: