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

main.cpp

Committer:
kuyamarc
Date:
2013-07-18
Revision:
1:b0cd3a071aac
Parent:
0:66332c315595

File content as of revision 1:b0cd3a071aac:

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

TextLCD lcd(PTC9, PTA13, PTD5, PTD0, PTD2, PTD3); // rs, e, d0-d3

int main() {
    lcd.printf("Marcos Miranda's\n");
    lcd.locate(0, 1);
    lcd.printf("   FRDM-KL25Z   ");
}