Dependencies:   TextLCD mbed

main.cpp

Committer:
MrBearing
Date:
2011-06-04
Revision:
0:9a443fca79c6

File content as of revision 0:9a443fca79c6:

// Hello World! for the TextLCD

#include "mbed.h"
#include "TextLCD.h"

TextLCD lcd( p24, p26, p27, p28, p29, p30 ); // rs, e, d4-d7
char a[4];
int main() {
    
    lcd.printf("Hello World!\n");
    wait(0.2);
    
    
    
    
//    lcd.cls();
}