Takumi Okamoto / Mbed 2 deprecated TextLCD_HelloWorld

Dependencies:   TextLCD mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers main.cpp Source File

main.cpp

00001 // Hello World! for the TextLCD
00002 
00003 #include "mbed.h"
00004 #include "TextLCD.h"
00005 
00006 TextLCD lcd( p24, p26, p27, p28, p29, p30 ); // rs, e, d4-d7
00007 char a[4];
00008 int main() {
00009     
00010     lcd.printf("Hello World!\n");
00011     wait(0.2);
00012     
00013     
00014     
00015     
00016 //    lcd.cls();
00017 }