#include "ui_handlers.h" #include #include "ble_hid.h" #include "boot_button.h" #include "esp_log.h" #include "ui_events.h" static const char *TAG = "ui_handlers"; static void on_boot_press(void) { if (ble_hid_ready()) { ble_hid_send_combo(0, HID_KEY_C); } else { ESP_LOGW(TAG, "HID not ready"); } } void ui_handlers_init(void) { boot_button_init(on_boot_press); } void update_year_action(lv_event_t * e) { (void)e; } void click_button_two(lv_event_t * e) { (void)e; } void click_button_three(lv_event_t * e) { (void)e; } void click_button_one(lv_event_t * e) { (void)e; }