LCD_CHAR_16x2 Freescale FRDM KL25Z

Dependencies:   TextLCD mbed

main.cpp

Committer:
BrayanB
Date:
2014-07-08
Revision:
0:a056f714557f

File content as of revision 0:a056f714557f:

// Hello World! for the TextLCD

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

TextLCD lcd(PTD1, PTD3, PTD2, PTD0, PTD5, PTA13); // rs, e, d4-d7

int main() {
    lcd.printf("Hi i'm Freescale\n");
    lcd.locate(1, 5);
    lcd.printf(" FRDM-kl25z\n");
}