Rob Toulson / Mbed 2 deprecated PE_08-05_TextLCDLibrary

Dependencies:   TextLCD mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers main.cpp Source File

main.cpp

00001 /*Program Example 8.5:  TextLCD library example
00002                                                            */
00003 
00004 #include "mbed.h"
00005 #include "TextLCD.h"
00006 TextLCD lcd(p19, p20, p21, p22, p23, p24); // rs, e, d0, d1, d2, d3
00007 
00008 
00009 int main() {
00010    // lcd.locate(3,0);
00011     lcd.printf("Hello World!");
00012 }
00013 
00014