LCD Hello mbed World!

Dependencies:   mbed

main.cpp

Committer:
takeuchi
Date:
2010-08-08
Revision:
0:0a5c73c2369a

File content as of revision 0:0a5c73c2369a:

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

TextLCD lcd(p24, p25, p26, p27, p28, p29, p30); // rs, rw, e, d4, d5, d6, d7

int main() {
      lcd.cls();
      lcd.printf("Hello mbed world!");
}