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
Nathan, Nice work.
So question, line number 397 in Camino.cpp was this: int value = digitalRead(dataArray[0]); and I was getting only 1 byte values.
int value = digitalRead(dataArray[0]);
I changed it to analogRead:
int value = analogRead(dataArray[0]); and now I am getting 0-65535 for 0-5V. That's what you intended right?
int value = analogRead(dataArray[0]);
I am on a Mega2560. Thanks. Again, nice work.
The text was updated successfully, but these errors were encountered:
Oops, yeah that's definitely wrong. Thanks for reporting it :)
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Nathan, Nice work.
So question, line number 397 in Camino.cpp was this:
int value = digitalRead(dataArray[0]);
and I was getting only 1 byte values.
I changed it to analogRead:
int value = analogRead(dataArray[0]);
and now I am getting 0-65535 for 0-5V.
That's what you intended right?
I am on a Mega2560.
Thanks. Again, nice work.
The text was updated successfully, but these errors were encountered: