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.
main.cpp
- Committer:
- simon
- Date:
- 2010-11-23
- Revision:
- 0:7bbc230e00d6
- Child:
- 1:e320e9cb0064
File content as of revision 0:7bbc230e00d6:
// Sweep the motor speed from full-speed reverse (-1.0) to full speed forwards (1.0) #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); } }