Shylaja Mohanraj / Mbed 2 deprecated BlackBox

Dependencies:   TextLCD mbed

Fork of TextLCD_HelloWorld by Simon Ford

main.cpp

Committer:
amrita_arm19
Date:
2016-03-24
Revision:
3:b7614524bb8f
Parent:
2:ad0b044d0a10
Child:
4:0e5cead61795

File content as of revision 3:b7614524bb8f:

// Hello World! for the TextLCD

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

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

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