hello world on lcd

Dependencies:   TextLCD mbed

Fork of HelloLCD by jim hamblen

Committer:
kit2
Date:
Sat Aug 31 06:14:11 2013 +0000
Revision:
1:178d8aff81ab
Parent:
0:bba654cca6d6
hello world on lcd;

Who changed what in which revision?

UserRevisionLine numberNew contents of line
4180_1 0:bba654cca6d6 1 #include "mbed.h"
4180_1 0:bba654cca6d6 2 #include "TextLCD.h"
4180_1 0:bba654cca6d6 3
kit2 1:178d8aff81ab 4 TextLCD lcd(p24, p25, p27, p28, p29, p30); // rs, e, d0-d3
4180_1 0:bba654cca6d6 5
4180_1 0:bba654cca6d6 6 int main() {
kit2 1:178d8aff81ab 7 lcd.printf("Hello World!\n");
4180_1 0:bba654cca6d6 8 }