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
Fork of 4180Lab2_part6 by
main.cpp
- Committer:
- ycai47
- Date:
- 2015-09-05
- Revision:
- 2:7481c04acf7f
- Parent:
- 1:5160ea45399b
- Child:
- 3:e724b47c0c04
File content as of revision 2:7481c04acf7f:
#include "mbed.h"
PwmOut control(p26);
int main() {
while(1) {
for(float p = 0.0f; p < 1.0f; p += 0.1f) {
control.write(p);
wait(5.0);
}
}
}
