Dependencies:   mbed

Fork of TextLCD_HelloWorld by Chris Styles

main.cpp

Committer:
Leesangwoon
Date:
2017-09-12
Revision:
1:ad907eb169ba
Parent:
0:66332c315595

File content as of revision 1:ad907eb169ba:

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

TextLCD lcd(PB_12, PB_13, PB_14, PB_15, PA_9, PA_10, PA_11); // rs, rw, e, d0-d3

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