Hello world with tracing

Dependencies:   C12832 mbed EthernetInterface HTTPClient mbed-rtos

main.cpp

Committer:
lamadio
Date:
2014-04-25
Revision:
0:46eff77f7857
Child:
1:51788ed0afde

File content as of revision 0:46eff77f7857:

#include "mbed.h"
#include "C12832.h"

DigitalOut myled(LED1);
C12832 lcd(p5, p7, p6, p8, p11);
 
int main() 
{
;
    lcd.cls();
    lcd.locate(0,3);
    lcd.printf("mbed application board!");
    

    while(1) 
    {
        myled = 1;
        wait(0.2);
        myled = 0;
        wait(0.2);
    }
}