From b3f3362b506d628c53cc610801bc3109965659ea Mon Sep 17 00:00:00 2001 From: Pete Johanson Date: Mon, 31 Aug 2020 10:18:19 -0400 Subject: feat(display): Initial widget/status screen work. * Battery and output status widgets * Built in status screen combining them. * Ability to define a custom status screen factory function. --- app/src/display/widgets/Kconfig | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 app/src/display/widgets/Kconfig (limited to 'app/src/display/widgets/Kconfig') diff --git a/app/src/display/widgets/Kconfig b/app/src/display/widgets/Kconfig new file mode 100644 index 0000000..1dbffb5 --- /dev/null +++ b/app/src/display/widgets/Kconfig @@ -0,0 +1,18 @@ + +menu "ZMK Display Widgets" + +config ZMK_WIDGET_BATTERY_STATUS + bool "Widget for battery charge information, using small icons" + depends on BT + default y if BT + select LVGL_OBJ_LABEL + select LVGL_BUILD_IN_FONT_ROBOTO_16 + +config ZMK_WIDGET_OUTPUT_STATUS + bool "Widget for keyboard output status icons" + depends on BT + default y if BT + select LVGL_OBJ_LABEL + select LVGL_BUILD_IN_FONT_ROBOTO_16 + +endmenu -- cgit v1.2.3