Nicholas Outram / Mbed OS Task523
Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers main.cpp Source File

main.cpp

00001 #include "mbed.h"
00002 
00003 PwmOut pwmRed(D7);
00004 
00005 int T = 10;
00006 int Tmark = 1;
00007 
00008 int main() {
00009     
00010     pwmRed.period_us(T);
00011     pwmRed.pulsewidth_us(Tmark);
00012     
00013     while(1) {
00014         sleep();
00015     }
00016 }