Jose Manuel Cruz Sanchez / Mbed 2 deprecated TextLCD_HelloWorld

Dependencies:   mbed TextLCD

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(p5, p6, p7, p8, p9, p10);//RS, RW, D4, D5, D6, D7
00005 
00006 int main() {
00007     int a=0;
00008     lcd.printf("Hello World!\n");
00009     
00010     while(1)
00011     { 
00012         lcd.locate(0,1);       
00013         lcd.printf("%d",a);
00014         wait(1);
00015         a++;
00016     }        
00017 }