From 3304a4e5da1afc22dfc0884ed978fc679eb8ee83 Mon Sep 17 00:00:00 2001 From: Rory Hayes Date: Sat, 14 Jul 2018 21:35:23 -0700 Subject: [PATCH] add battery icon to splash screen --- main/gui.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/main/gui.c b/main/gui.c index 655d708..4460c87 100644 --- a/main/gui.c +++ b/main/gui.c @@ -6,6 +6,7 @@ #include "ugui.h" #include "8bkc-hal.h" #include "8bkc-ugui.h" +#include "8bkcgui-widgets.h" #include "appfs.h" #include "freertos/FreeRTOS.h" #include "freertos/task.h" @@ -95,6 +96,8 @@ void guiInit() { UG_PutString(30, 56, "MENU"); UG_SetBackcolor(C_BLACK); + kcugui_drawBatteryIcon(); + kcugui_flush(); }