/* * Copyright (c) 2022 The ZMK Contributors * * SPDX-License-Identifier: MIT */ #include #include #include LOG_MODULE_DECLARE(zmk, CONFIG_ZMK_LOG_LEVEL); #include #include #include #include #include static sys_slist_t widgets = SYS_SLIST_STATIC_INIT(&widgets); struct peripheral_status_state { bool connected; }; static struct peripheral_status_state get_state(const zmk_event_t *_eh) { return (struct peripheral_status_state){.connected = zmk_split_bt_peripheral_is_connected()}; } static void set_status_symbol(lv_obj_t *label, struct peripheral_status_state state) { const char *text = state.connected ? (LV_SYMBOL_WIFI " " LV_SYMBOL_OK) : (LV_SYMBOL_WIFI " " LV_SYMBOL_CLOSE); LOG_DBG("connected? %s", state.connected ? "true" : "false"); lv_label_set_text(label, text); } static void output_status_update_cb(struct peripheral_status_state state) { struct zmk_widget_peripheral_status *widget; SYS_SLIST_FOR_EACH_CONTAINER(&widgets, widget, node) { set_status_symbol(widget->obj, state); } } ZMK_DISPLAY_WIDGET_LISTENER(widget_peripheral_status, struct peripheral_status_state, output_status_update_cb, get_state) ZMK_SUBSCRIPTION(widget_peripheral_status, zmk_split_peripheral_status_changed); int zmk_widget_peripheral_status_init(struct zmk_widget_peripheral_status *widget, lv_obj_t *parent) { widget->obj = lv_label_create(parent, NULL); lv_obj_set_size(widget->obj, 40, 15); sys_slist_append(&widgets, &widget->node); widget_peripheral_status_init(); return 0; } lv_obj_t *zmk_widget_peripheral_status_obj(struct zmk_widget_peripheral_status *widget) { return widget->obj; }