hello world

Dependencies:   TextLCD mbed

Fork of TextLCD_HelloWorld by Simon Ford

main.cpp

Committer:
DrMirko
Date:
2016-10-24
Revision:
3:dd86a12e9fe5
Parent:
2:ad0b044d0a10

File content as of revision 3:dd86a12e9fe5:

// Hello World! for the TextLCD

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

TextLCD lcd(D12, D11, D5, D4, D3, D2); // rs, e, d4-d7

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