NITH ece / Mbed 2 deprecated HelloLCD

Dependencies:   TextLCD mbed

Fork of HelloLCD by jim hamblen

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers main.cpp Source File

main.cpp

00001 #include "mbed.h"
00002 #include "TextLCD.h"
00003 
00004 TextLCD lcd(p24, p25, p27, p28, p29, p30); // rs, e, d0-d3
00005 
00006 int main() {
00007     lcd.printf("Hello World!\n");
00008 }