ECE4180 / Mbed 2 deprecated 4180Lab2_part6

Dependencies:   mbed

Fork of PwmOut_HelloWorld by 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(p26);
00004 
00005 int main() {
00006     while(1) {
00007         for(float p = 0.0f; p < 1.0f; p += 0.1f) {
00008             control.write(p);
00009             wait(5.0);
00010         }
00011     }
00012 }