LCD 2x16 example

Dependencies:   TextLCD mbed

Fork of k64f-lcd by Hernán Maya

main.cpp

Committer:
satelite
Date:
2016-05-28
Revision:
0:ee189687f32d
Child:
1:2769c0bc7b9f

File content as of revision 0:ee189687f32d:

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

TextLCD lcd(PTC3, PTC2, PTA2, PTB23, PTA1, PTB9);

int main()
{
    lcd.printf("Hello World!\n");
}