Working, converted test code for working Arduino-compatible LCD shield with the configuration of "LiquidCrystal lcd(12, 11, 10, 9, 8, 7)". All it says, is my name and the board ID. It's a 'proof-of-concept' project showing my LCD shield works without any hardware changes.

Dependencies:   TextLCD mbed

Fork of TextLCD_HelloWorld by Chris Styles

Revision:
0:66332c315595
Child:
1:b0cd3a071aac
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Tue Nov 16 12:45:03 2010 +0000
@@ -0,0 +1,8 @@
+#include "mbed.h"
+#include "TextLCD.h"
+
+TextLCD lcd(p10, p12, p15, p16, p17, p18); // rs, e, d0-d3
+
+int main() {
+    lcd.printf("Hello World!\n");
+}