b3f3362b50
* Battery and output status widgets * Built in status screen combining them. * Ability to define a custom status screen factory function.
18 lines
No EOL
392 B
C
18 lines
No EOL
392 B
C
/*
|
|
* Copyright (c) 2020 The ZMK Contributors
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <lvgl.h>
|
|
#include <kernel.h>
|
|
|
|
struct zmk_widget_output_status {
|
|
sys_snode_t node;
|
|
lv_obj_t *obj;
|
|
};
|
|
|
|
int zmk_widget_output_status_init(struct zmk_widget_output_status *widget, lv_obj_t *parent);
|
|
lv_obj_t *zmk_widget_output_status_obj(struct zmk_widget_output_status *widget); |