LCD Hello mbed World! Working with Nucleo and DFRobot 16x2 Keypad shield

Dependencies:   TextLCD mbed

Fork of LCD_Hello_mbed by Takeuchi Kouichi

main.cpp

Committer:
whatnick
Date:
2014-10-27
Revision:
1:6aaf96a8a2d6
Parent:
0:0a5c73c2369a

File content as of revision 1:6aaf96a8a2d6:

#include "mbed.h"
#include "TextLCD.h"

TextLCD lcd(D8, D9, D4, D5, D6, D7); // rs, e, d4, d5, d6, d7

int main() {
      lcd.cls();
      lcd.printf("Hello mbed world!");
}