Simple Hello World! for the TextLCD library

Dependencies:   TextLCD mbed

Fork of TextLCD_HelloWorld by Simon Ford

main.cpp

Committer:
screamer
Date:
2013-11-01
Revision:
3:49f256a49e3a
Parent:
2:ad0b044d0a10

File content as of revision 3:49f256a49e3a:

// Hello World! for the TextLCD

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

TextLCD lcd(p15, p16, p17, p18, p19, p20); // rs, e, d4-d7

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