LCD

Dependencies:   mbed TextLCD

main.cpp

Committer:
luigi_lagatta
Date:
2019-04-02
Revision:
3:350f984365cc
Parent:
2:ad0b044d0a10

File content as of revision 3:350f984365cc:

// Hello World! for the TextLCD

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

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

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