Tisham Dhar / Mbed 2 deprecated Nucleo_LCD_Hello

Dependencies:   TextLCD mbed

Fork of LCD_Hello_mbed by Takeuchi Kouichi

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(D8, D9, D4, D5, D6, D7); // rs, e, d4, d5, d6, d7
00005 
00006 int main() {
00007       lcd.cls();
00008       lcd.printf("Hello mbed world!");
00009 }