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
On https://github.com/bq/robopad/blob/master/Arduino/robopad_beetle_droid_arduino/robopad_beetle_droid_arduino.ino , line 250 if the target is to follow the Light, the code is wrong...
it should be like:
if (leftLDR < lightLimitValue) { rightWheel.write(wheelStopValue); delay(defaultDelay); } else { rightWheel.write(rightWheelFordwardValue); delay(defaultDelay); }
......... If that's right , I cand send a PR.
The text was updated successfully, but these errors were encountered:
Hi,
Thanks, but the target is a light avoider, not a light follower.
It is not translated to English yet but you can see how it goes seeing the pictures here: http://diy.bq.com/printbots/beetle-huye-luz/
Thanks anyway for your interest! If you find any bug tell us and I will revise it!
Sorry, something went wrong.
No branches or pull requests
On https://github.com/bq/robopad/blob/master/Arduino/robopad_beetle_droid_arduino/robopad_beetle_droid_arduino.ino , line 250
if the target is to follow the Light, the code is wrong...
it should be like:
if (leftLDR < lightLimitValue) {
rightWheel.write(wheelStopValue);
delay(defaultDelay);
} else {
rightWheel.write(rightWheelFordwardValue);
delay(defaultDelay);
}
.........
If that's right , I cand send a PR.
The text was updated successfully, but these errors were encountered: