LCD

Dependencies:   mbed TextLCD

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(D10,D11,D5,D4,D3,D2); // rs, e, d4-d7
00007 
00008 int main() {
00009     lcd.printf("Hello World!\n");
00010 }