2023-07-18 14:43:30 -07:00
|
|
|
/*
|
|
|
|
*
|
|
|
|
* Copyright (c) 2023 The ZMK Contributors
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <lvgl.h>
|
|
|
|
#include <zmk/endpoints.h>
|
|
|
|
|
|
|
|
#define CANVAS_SIZE 68
|
|
|
|
|
|
|
|
#define LVGL_BACKGROUND \
|
|
|
|
IS_ENABLED(CONFIG_NICE_VIEW_WIDGET_INVERTED) ? lv_color_black() : lv_color_white()
|
|
|
|
#define LVGL_FOREGROUND \
|
|
|
|
IS_ENABLED(CONFIG_NICE_VIEW_WIDGET_INVERTED) ? lv_color_white() : lv_color_black()
|
|
|
|
|
|
|
|
struct status_state {
|
|
|
|
uint8_t battery;
|
|
|
|
bool charging;
|
|
|
|
#if !IS_ENABLED(CONFIG_ZMK_SPLIT) || IS_ENABLED(CONFIG_ZMK_SPLIT_ROLE_CENTRAL)
|
2023-08-27 16:33:29 -07:00
|
|
|
struct zmk_endpoint_instance selected_endpoint;
|
2023-10-08 16:30:23 -07:00
|
|
|
int active_profile_index;
|
2023-07-18 14:43:30 -07:00
|
|
|
bool active_profile_connected;
|
|
|
|
bool active_profile_bonded;
|
|
|
|
uint8_t layer_index;
|
|
|
|
const char *layer_label;
|
|
|
|
uint8_t wpm[10];
|
|
|
|
#else
|
|
|
|
bool connected;
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
|
|
|
struct battery_status_state {
|
|
|
|
uint8_t level;
|
|
|
|
#if IS_ENABLED(CONFIG_USB_DEVICE_STACK)
|
|
|
|
bool usb_present;
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
|
|
|
void rotate_canvas(lv_obj_t *canvas, lv_color_t cbuf[]);
|
2023-08-27 16:33:29 -07:00
|
|
|
void draw_battery(lv_obj_t *canvas, const struct status_state *state);
|
2023-07-18 14:43:30 -07:00
|
|
|
void init_label_dsc(lv_draw_label_dsc_t *label_dsc, lv_color_t color, const lv_font_t *font,
|
|
|
|
lv_text_align_t align);
|
|
|
|
void init_rect_dsc(lv_draw_rect_dsc_t *rect_dsc, lv_color_t bg_color);
|
|
|
|
void init_line_dsc(lv_draw_line_dsc_t *line_dsc, lv_color_t color, uint8_t width);
|
|
|
|
void init_arc_dsc(lv_draw_arc_dsc_t *arc_dsc, lv_color_t color, uint8_t width);
|