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.
Revision 1:e320e9cb0064, committed 2021-02-11
- Comitter:
- glanier9
- Date:
- Thu Feb 11 16:07:06 2021 +0000
- Parent:
- 0:7bbc230e00d6
- Commit message:
- Final
Changed in this revision
main.cpp | Show annotated file Show diff for this revision Revisions of this file |
diff -r 7bbc230e00d6 -r e320e9cb0064 main.cpp --- a/main.cpp Tue Nov 23 16:19:19 2010 +0000 +++ b/main.cpp Thu Feb 11 16:07:06 2021 +0000 @@ -3,11 +3,23 @@ #include "mbed.h" #include "Motor.h" +//Motor m(p23, p6, p5); // pwm, fwd, rev +// +//int main() { +// for (float s= -1.0; s < 1.0 ; s += 0.01) { +// m.speed(s); +// wait(0.02); +// } +//} + + Motor m(p23, p6, p5); // pwm, fwd, rev +AnalogIn pot(p19); int main() { - for (float s= -1.0; s < 1.0 ; s += 0.01) { - m.speed(s); - wait(0.02); + + while(1) { + m.speed( (pot*2) - 1 ); } -} + +} \ No newline at end of file