4180 LabTeam - Spring '18 / Mbed 2 deprecated Lab2_Part7

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 Ctrl(p21);
00004  
00005 int main() {
00006     while(1) {
00007         float x = 0.0; x < 0; x+=0.01){
00008             Ctrl = x;
00009         }
00010     }
00011 }