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 4180lab2_part7_Motor by
Diff: main.cpp
- Revision:
- 1:1997f5ee08bc
- Parent:
- 0:7bbc230e00d6
- Child:
- 2:fab667092434
--- a/main.cpp Tue Nov 23 16:19:19 2010 +0000
+++ b/main.cpp Sat Sep 05 22:49:48 2015 +0000
@@ -3,11 +3,13 @@
#include "mbed.h"
#include "Motor.h"
-Motor m(p23, p6, p5); // pwm, fwd, rev
+AnalogIn pot(p20);
+Motor m(p25, p6, p5); // pwm, fwd, rev
int main() {
- for (float s= -1.0; s < 1.0 ; s += 0.01) {
- m.speed(s);
+ while (true)
+ {
+ m.speed((pot-1.65f)/1.65f);
wait(0.02);
}
-}
+}
\ No newline at end of file
