Experiment 1 from "Hacker's workbook"

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 DigitalOut pin(D13);
00004 
00005 int main()
00006 {
00007     while(1)
00008     {
00009         pin = true;
00010         
00011         wait(0.1);
00012         
00013         pin = false;
00014         
00015         wait(0.9);
00016     }
00017 }