Kevin Abraham / Mbed 2 deprecated 4180Lab1-9

Dependencies:   PinDetect mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers main.cpp Source File

main.cpp

00001 #include "mbed.h"
00002 
00003 AnalogOut ao(p18);
00004 PwmOut led(LED2);
00005 
00006 float t = 0.0f;
00007 
00008 int main()
00009 {
00010     while(1) {
00011         ao = sin(t) / 2.0f + 0.5f;
00012         t += 0.31f;
00013     }
00014 }