Demo program for LvGL_F746NG.

Dependencies:   LvGL_F746NG

Revision:
0:72b043376ade
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Tue Sep 08 13:35:16 2020 +0800
@@ -0,0 +1,15 @@
+#include "mbed.h"
+#include "lvgl_f746ng.h"
+#include "lv_helloworld.h"
+
+
+int main()
+{
+    lvgl_f746ng_init(); // Boiler plate
+
+    lv_helloworld(); // Create custom GUI
+    
+    while(1) {
+        thread_sleep_for(100); // Keep alive main thread, ZZzz..
+    }
+}