From 8a4f60432540c5161713fb02f4769e0b26c5a50a Mon Sep 17 00:00:00 2001 From: Ally Parker Date: Tue, 30 Jan 2024 15:02:23 +0000 Subject: [PATCH] bluetooth --- app/boards/shields/nice_view/widgets/peripheral_status.c | 2 +- app/boards/shields/nice_view/widgets/status.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/boards/shields/nice_view/widgets/peripheral_status.c b/app/boards/shields/nice_view/widgets/peripheral_status.c index 989681f32c5d..8f818a331a4b 100644 --- a/app/boards/shields/nice_view/widgets/peripheral_status.c +++ b/app/boards/shields/nice_view/widgets/peripheral_status.c @@ -49,7 +49,7 @@ static void draw_top(lv_obj_t *widget, lv_color_t cbuf[], const struct status_st // Draw output status lv_canvas_draw_text(canvas, 0, 0, CANVAS_SIZE, &label_dsc, - state->connected ? LV_SYMBOL_WIFI : LV_SYMBOL_CLOSE); + state->connected ? LV_SYMBOL_BLUETOOTH : LV_SYMBOL_CLOSE); // Rotate canvas rotate_canvas(canvas, cbuf); diff --git a/app/boards/shields/nice_view/widgets/status.c b/app/boards/shields/nice_view/widgets/status.c index 41c0974380fe..7c0c0a2d41c2 100644 --- a/app/boards/shields/nice_view/widgets/status.c +++ b/app/boards/shields/nice_view/widgets/status.c @@ -75,7 +75,7 @@ static void draw_top(lv_obj_t *widget, lv_color_t cbuf[], const struct status_st case ZMK_TRANSPORT_BLE: if (state->active_profile_bonded) { if (state->active_profile_connected) { - strcat(output_text, LV_SYMBOL_WIFI); + strcat(output_text, LV_SYMBOL_BLUETOOTH); } else { strcat(output_text, LV_SYMBOL_CLOSE); }