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 Program3_Servo by
main.cpp
00001 #include "mbed.h" // this tells us to load mbed related functions 00002 #include "Servo.h" // library for the Servo 00003 00004 Servo myservo(p10); 00005 00006 // this code runs when the microcontroller starts up 00007 int main() { 00008 for(float p=0; p<1.0; p += 0.1) { 00009 myservo = p; 00010 00011 wait(0.2); 00012 // YOUR CODE HERE : make code run between 0-1 only! 00013 } 00014 }
Generated on Wed Jul 13 2022 20:20:23 by
1.7.2
