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:
- leonNg
- Date:
- 2020-06-23
- Revision:
- 0:e35f0aee6a1f
File content as of revision 0:e35f0aee6a1f:
#include "mbed.h"
#include "Servo.h"
Servo servo(PB_3, 0.0025, 0);
//PWM output pin, Period(s), Plusewidth(s)
int main(){
while(1){
servo.servoMove(500);
//Plusewidth(s)
}
}