modified project by other user

Dependencies:   mbed

Fork of __collab_test by Tedd OKANO

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers main.cpp Source File

main.cpp

00001 //  just pulled from mr.ytsuboi and add this line and publishing again / okano
00002 
00003 #include "mbed.h"
00004 
00005 DigitalOut myled(LED1);
00006 
00007 int main() {
00008     while(1) {
00009         myled = 1;
00010         wait(0.5);
00011         myled = 0;
00012         wait(0.5);
00013     }
00014 }