it is test project using DISCO-F469NI target board

Dependencies:   BSP_DISCO_F469NI LCD_DISCO_F469NI USBHOST

Revision:
2:1fb6f946b69b
Parent:
0:53746acfed69
Child:
3:b61f4db32ed5
--- a/main.cpp	Mon Aug 07 19:18:34 2017 +0900
+++ b/main.cpp	Tue Aug 08 09:46:29 2017 +0900
@@ -1,11 +1,18 @@
 #include "mbed.h"
+#include "LCD_DISCO_F469NI.h"
+
+LCD_DISCO_F469NI lcd;
 
 DigitalOut led_green(LED1);
 DigitalOut led_orange(LED2);
 DigitalOut led_red(LED3);
 DigitalOut led_blue(LED4);
 
-int main() {  
+int main() {
+
+    lcd.DisplayStringAt(0, LINE(1), (uint8_t *)"MBED EXAMPLE", CENTER_MODE);
+    wait(1);
+
     while(1) {
         // WARNING: LEDs are OFF
         led_green = 1;