Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed
Diff: Control/drivecontrol.cpp
- Revision:
- 26:191ec0e78774
- Parent:
- 25:7155cb993870
- Child:
- 27:b980fce784ea
--- a/Control/drivecontrol.cpp Sun May 21 06:34:21 2017 +0000 +++ b/Control/drivecontrol.cpp Sun May 21 08:10:29 2017 +0000 @@ -227,6 +227,11 @@ return rightIR.readIR() > RIGHT_SIDE_WALL_THRES; } +void DriveControl::reverse() { + leftMotor->speed(-5); + rightMotor->speed(-5); +} + void DriveControl::clear_pid() { pid_controller::clear_pid(); }