MosfetMotr

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers main.cpp Source File

main.cpp

00001 #include "mbed.h"
00002 
00003 PwmOut control(p21);
00004 float p = 0;
00005 
00006 int main() {
00007     control = 0.0f;
00008     while(1) {
00009         int i;
00010         p=0;
00011         for(i=0; i<10; i++){
00012             p += 0.1f;
00013             control = p;
00014             wait(2);
00015         }
00016     }
00017 }