Masayoshi Takahashi / 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 #include "mbed.h"
00002 #include "TextLCD.h"
00003 
00004 TextLCD lcd(p24, p26, p27, p28, p29, p30); // rs, e, d0-d3
00005 
00006 int main() {
00007     lcd.printf("Hello World!\n");
00008 }