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:
- 1:40d2fd0b99e6
- Parent:
- 0:ea7182628dfa
- Child:
- 2:2e55f8c4e259
File content as of revision 1:40d2fd0b99e6:
// Hello World to sweep a servo through its full range #include "mbed.h" #include "Servo.h" Servo myservo(p21); int main() { for(float p=0; p<1.0; p += 0.1) { myservo = p; wait(0.2); } }