LCD Hello mbed World!

Dependencies:   mbed TextLCD

Revision:
0:0a5c73c2369a
Child:
1:b501f964e376
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Sun Aug 08 11:46:42 2010 +0000
@@ -0,0 +1,9 @@
+#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!");
+}
\ No newline at end of file