test file

Dependencies:   TextLCD mbed

Fork of TextLCD_HelloWorld by Srinivasan Ramasamy

main.cpp

Committer:
bernardrayappa
Date:
2013-11-20
Revision:
4:76169678e056
Parent:
3:bae19bde97d5

File content as of revision 4:76169678e056:

// Hello World! for the TextLCD

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

TextLCD lcd(p25, p26, p24, p23, p22, p21); // rs, e, d4-d7

int main() 
{
while (1){
    lcd.printf(" This is 16x2!\n");
    lcd.printf("Jello World!\n");
    wait(1);
    lcd.printf("Jello World!  \n");
    lcd.printf("Hello World!\n");
    wait(1);
}
}