From ebbd72aebf90d65ea502ee521bee924c5d400ac3 Mon Sep 17 00:00:00 2001 From: anschrammh Date: Sat, 14 Sep 2024 18:09:19 +0200 Subject: [PATCH] Changed watch face background color from black to white --- src/W800_SDK_v1.00.10/app/gfx/watch_face.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/W800_SDK_v1.00.10/app/gfx/watch_face.c b/src/W800_SDK_v1.00.10/app/gfx/watch_face.c index 6d18d72..6899a72 100644 --- a/src/W800_SDK_v1.00.10/app/gfx/watch_face.c +++ b/src/W800_SDK_v1.00.10/app/gfx/watch_face.c @@ -309,7 +309,7 @@ void watch_face_create(WatchFace_t * const watchFace) //Our display is the watch face image : watchFace->display = lv_img_create(NULL); lv_img_set_src(watchFace->display, watch_face_img); - lv_obj_set_style_bg_color(watchFace->display, lv_color_black(), LV_PART_MAIN); + lv_obj_set_style_bg_color(watchFace->display, lv_color_white(), LV_PART_MAIN); lv_obj_add_event_cb(watchFace->display, &(hide_hour_and_minutes_hand_cb), LV_EVENT_LONG_PRESSED, watchFace); //Battery arc is created here