Hello

Dependencies:   mbed

Fork of TextLCD_HelloWorld by Simon Ford

main.cpp

Committer:
isteinwand93
Date:
2013-10-27
Revision:
3:63f3a834269c
Parent:
2:ad0b044d0a10

File content as of revision 3:63f3a834269c:

// 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() {
    lcd.printf("Hello World!\n");
}