ioTinkers / Mbed 2 deprecated pwmm

Dependencies:   Servo mbed

asd.cpp

Committer:
LordGT
Date:
2018-08-13
Revision:
1:9867060b8cea

File content as of revision 1:9867060b8cea:

#include "mbed.h"
#include "Servo.h"
 
 Servo myservo(p21);
 
 int main() {
     while(1) {
         for(int i=0; i<100; i++) {
             myservo = i/100.0;
             wait(0.01);
         }
         for(int i=100; i>0; i--) {
             myservo = i/100.0;
             wait(0.01);
         }
     }
 }