|
|
|
/*
|
|
|
|
* Copyright (c) 2020 The ZMK Contributors
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <zmk/display/widgets/output_status.h>
|
|
|
|
#include <zmk/display/widgets/battery_status.h>
|
|
|
|
#include <zmk/display/status_screen.h>
|
|
|
|
|
|
|
|
#include <logging/log.h>
|
|
|
|
LOG_MODULE_DECLARE(zmk, CONFIG_ZMK_LOG_LEVEL);
|
|
|
|
|
|
|
|
#if IS_ENABLED(CONFIG_ZMK_WIDGET_BATTERY_STATUS)
|
|
|
|
static struct zmk_widget_battery_status battery_status_widget;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if IS_ENABLED(CONFIG_ZMK_WIDGET_OUTPUT_STATUS)
|
|
|
|
static struct zmk_widget_output_status output_status_widget;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
lv_obj_t *zmk_display_status_screen() {
|
|
|
|
lv_obj_t *screen;
|
|
|
|
lv_obj_t *zmk_version_label;
|
|
|
|
|
|
|
|
screen = lv_obj_create(NULL, NULL);
|
|
|
|
|
|
|
|
zmk_version_label = lv_label_create(screen, NULL);
|
|
|
|
|
|
|
|
#if IS_ENABLED(CONFIG_ZMK_WIDGET_BATTERY_STATUS)
|
|
|
|
zmk_widget_battery_status_init(&battery_status_widget, screen);
|
|
|
|
lv_obj_align(zmk_widget_battery_status_obj(&battery_status_widget), NULL, LV_ALIGN_IN_TOP_RIGHT,
|
|
|
|
0, 0);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if IS_ENABLED(CONFIG_ZMK_WIDGET_OUTPUT_STATUS)
|
|
|
|
zmk_widget_output_status_init(&output_status_widget, screen);
|
|
|
|
lv_obj_align(zmk_widget_output_status_obj(&output_status_widget), NULL, LV_ALIGN_IN_TOP_LEFT, 0,
|
|
|
|
0);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
lv_label_set_text(zmk_version_label, "ZMK v0.1.0");
|
|
|
|
lv_obj_align(zmk_version_label, NULL, LV_ALIGN_IN_BOTTOM_MID, 0, 0);
|
|
|
|
|
|
|
|
return screen;
|
|
|
|
}
|