Mark Fejes / Mbed 2 deprecated LCD_control

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(p10, p12, p17, p18, p19, p20);
00005 
00006 int main() {
00007 
00008 
00009     lcd.cls();
00010     lcd.printf("helloo");
00011     wait(5);
00012     lcd.cls();
00013     lcd.printf("Fuck you!");
00014     }
00015