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:
takeuchi
Date:
2010-08-08
Revision:
0:0a5c73c2369a
Child:
1:6aaf96a8a2d6

File content as of revision 0:0a5c73c2369a:

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

TextLCD lcd(p24, p25, p26, p27, p28, p29, p30); // rs, rw, e, d4, d5, d6, d7

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