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.
Fork of SAILORSbot by
Revision 39:3ce09603d443, committed 2017-06-30
- Comitter:
- zsunberg
- Date:
- Fri Jun 30 02:34:37 2017 +0000
- Parent:
- 38:09a854bc9290
- Commit message:
- made default speeds negative
Changed in this revision
| main.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- a/main.cpp Thu Jun 29 18:13:50 2017 +0000
+++ b/main.cpp Fri Jun 30 02:34:37 2017 +0000
@@ -11,8 +11,8 @@
static double previous_position = 0.0;
static double integral = 0.0;
- leftspeed = speed;
- rightspeed = speed;
+ leftspeed = -0.1;
+ rightspeed = -0.1;
// Do your control calculations here
////////////////////////////////////
