This code allows obtain the values sent from a bluetooth module and in the same time allows see in a LCD 16*2 the state (on or off) of a Led of the Freescale

Dependencies:   TextLCD mbed

Fork of LCD_FRDM_KL25Z by Gustavo Ramirez

main.cpp

Committer:
tony63
Date:
2013-09-03
Revision:
0:a6771cc1a056
Child:
1:23e44d676994

File content as of revision 0:a6771cc1a056:

// Hello World! for the TextLCD
// EJEMPLO CON UN LCD PARA EL MODULO FRDM-KL25Z

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

TextLCD lcd(PTE0, PTE1, PTE2, PTE3, PTE4, PTE5); // rs, e, d4-d7

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