LCD 2x16 example

Dependencies:   TextLCD mbed

Fork of k64f-lcd by Hernán Maya

Committer:
satelite
Date:
Sat May 28 01:45:09 2016 +0000
Revision:
0:ee189687f32d
Child:
1:2769c0bc7b9f
LCD 2x16 + K64F

Who changed what in which revision?

UserRevisionLine numberNew contents of line
satelite 0:ee189687f32d 1 #include "mbed.h"
satelite 0:ee189687f32d 2 #include "TextLCD.h"
satelite 0:ee189687f32d 3
satelite 0:ee189687f32d 4 TextLCD lcd(PTC3, PTC2, PTA2, PTB23, PTA1, PTB9);
satelite 0:ee189687f32d 5
satelite 0:ee189687f32d 6 int main()
satelite 0:ee189687f32d 7 {
satelite 0:ee189687f32d 8 lcd.printf("Hello World!\n");
satelite 0:ee189687f32d 9 }