Fork of Example_Printf program, for to fix issue ____ .
Fork of Example_printf by
main.cpp
00001 // 00002 // This program prints "Hello World" to the terminal 00003 // 00004 #include "mbed.h" 00005 00006 DigitalOut led(LED1); 00007 00008 int main() { 00009 printf("Hello World!\n\r"); 00010 while(1){ 00011 led = 1; 00012 wait(1); 00013 led = 0; 00014 wait(1); 00015 } 00016 // Do nothing 00017 }
Generated on Sun Oct 16 2022 13:34:03 by
1.7.2
Austin Blackstone