by Rob Toulson and Tim Wilmshurst from textbook "Fast and Effective Embedded Systems Design: Applying the ARM mbed"

Dependencies:   TextLCD mbed

Revision:
0:6da9a49508df
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Fri May 24 21:34:10 2013 +0000
@@ -0,0 +1,14 @@
+/*Program Example 8.5:  TextLCD library example
+                                                           */
+
+#include "mbed.h"
+#include "TextLCD.h"
+TextLCD lcd(p19, p20, p21, p22, p23, p24); // rs, e, d0, d1, d2, d3
+
+
+int main() {
+   // lcd.locate(3,0);
+    lcd.printf("Hello World!");
+}
+
+