Numero Uno / Mbed 2 deprecated LCD_test

Dependencies:   TextLCD mbed

Revision:
0:4fd09cbb532f
diff -r 000000000000 -r 4fd09cbb532f main.cpp
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Thu Oct 22 12:26:13 2015 +0000
@@ -0,0 +1,14 @@
+// Hello World! for the TextLCD
+ 
+#include "mbed.h"
+#include "TextLCD.h"
+ 
+TextLCD lcd(D9, D14, D15, PTB19, PTB18, A4); // rs, e, d4-d7 
+
+int main()
+{
+    lcd.printf("You Fool! Stoorvogel! ");
+    wait(3);
+    lcd.cls();
+    lcd.printf("Stochastic Signals! \n We are the mBed!");
+}