16ab6df18d
* Add new API/status to track state of the peripheral connection to the central. * Add new peripheral status widget for displaying the current status of the connection to the central.
19 lines
No EOL
450 B
C
19 lines
No EOL
450 B
C
/*
|
|
* Copyright (c) 2022 The ZMK Contributors
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <lvgl.h>
|
|
#include <kernel.h>
|
|
|
|
struct zmk_widget_peripheral_status {
|
|
sys_snode_t node;
|
|
lv_obj_t *obj;
|
|
};
|
|
|
|
int zmk_widget_peripheral_status_init(struct zmk_widget_peripheral_status *widget,
|
|
lv_obj_t *parent);
|
|
lv_obj_t *zmk_widget_peripheral_status_obj(struct zmk_widget_peripheral_status *widget); |