3a24d058c9
* **New Features** * Added NFC chip-select to SD card hardware configuration. * **Refactor** * Consolidated and renamed icon resources; apps and status-bar now reference unified icon headers and new icon constants. * Renamed LVGL lock API (timed → lvgl_try_lock) and updated callers. * **Documentation** * Updated module README and license files; added Apache-2.0 license document.
194 lines
8.2 KiB
C++
194 lines
8.2 KiB
C++
#ifdef ESP_PLATFORM
|
|
|
|
#include <Tactility/Tactility.h>
|
|
|
|
#include <Tactility/settings/KeyboardSettings.h>
|
|
#include <Tactility/lvgl/Toolbar.h>
|
|
|
|
#include <tactility/lvgl_icon_shared.h>
|
|
|
|
#include <lvgl.h>
|
|
|
|
// Forward declare driver functions
|
|
namespace keyboardbacklight {
|
|
bool setBrightness(uint8_t brightness);
|
|
}
|
|
|
|
namespace tt::app::keyboardsettings {
|
|
|
|
constexpr auto* TAG = "KeyboardSettings";
|
|
|
|
// Shared timeout values: 15s, 30s, 1m, 2m, 5m, Never (0)
|
|
static constexpr uint32_t TIMEOUT_VALUES_MS[] = {15000, 30000, 60000, 120000, 300000, 0};
|
|
static constexpr size_t TIMEOUT_DEFAULT_IDX = 2; // 1 minute
|
|
|
|
static uint32_t timeoutMsToIndex(uint32_t ms) {
|
|
for (size_t i = 0; i < sizeof(TIMEOUT_VALUES_MS) / sizeof(TIMEOUT_VALUES_MS[0]); ++i) {
|
|
if (TIMEOUT_VALUES_MS[i] == ms) return static_cast<uint32_t>(i);
|
|
}
|
|
return TIMEOUT_DEFAULT_IDX;
|
|
}
|
|
|
|
static void applyKeyboardBacklight(bool enabled, uint8_t brightness) {
|
|
keyboardbacklight::setBrightness(enabled ? brightness : 0);
|
|
}
|
|
|
|
class KeyboardSettingsApp final : public App {
|
|
|
|
settings::keyboard::KeyboardSettings kbSettings;
|
|
bool updated = false;
|
|
lv_obj_t* switchBacklight = nullptr;
|
|
lv_obj_t* sliderBrightness = nullptr;
|
|
lv_obj_t* switchTimeoutEnable = nullptr;
|
|
lv_obj_t* timeoutDropdown = nullptr;
|
|
|
|
static void onBacklightSwitch(lv_event_t* e) {
|
|
auto* app = static_cast<KeyboardSettingsApp*>(lv_event_get_user_data(e));
|
|
bool enabled = lv_obj_has_state(app->switchBacklight, LV_STATE_CHECKED);
|
|
app->kbSettings.backlightEnabled = enabled;
|
|
app->updated = true;
|
|
if (app->sliderBrightness) {
|
|
if (enabled) lv_obj_clear_state(app->sliderBrightness, LV_STATE_DISABLED);
|
|
else lv_obj_add_state(app->sliderBrightness, LV_STATE_DISABLED);
|
|
}
|
|
applyKeyboardBacklight(enabled, app->kbSettings.backlightBrightness);
|
|
}
|
|
|
|
static void onBrightnessChanged(lv_event_t* e) {
|
|
auto* app = static_cast<KeyboardSettingsApp*>(lv_event_get_user_data(e));
|
|
int32_t v = lv_slider_get_value(app->sliderBrightness);
|
|
app->kbSettings.backlightBrightness = static_cast<uint8_t>(v);
|
|
app->updated = true;
|
|
if (app->kbSettings.backlightEnabled) {
|
|
applyKeyboardBacklight(true, app->kbSettings.backlightBrightness);
|
|
}
|
|
}
|
|
|
|
static void onTimeoutEnableSwitch(lv_event_t* e) {
|
|
auto* app = static_cast<KeyboardSettingsApp*>(lv_event_get_user_data(e));
|
|
bool enabled = lv_obj_has_state(app->switchTimeoutEnable, LV_STATE_CHECKED);
|
|
app->kbSettings.backlightTimeoutEnabled = enabled;
|
|
app->updated = true;
|
|
if (app->timeoutDropdown) {
|
|
if (enabled) {
|
|
lv_obj_clear_state(app->timeoutDropdown, LV_STATE_DISABLED);
|
|
} else {
|
|
lv_obj_add_state(app->timeoutDropdown, LV_STATE_DISABLED);
|
|
}
|
|
}
|
|
}
|
|
|
|
static void onTimeoutChanged(lv_event_t* event) {
|
|
auto* app = static_cast<KeyboardSettingsApp*>(lv_event_get_user_data(event));
|
|
auto* dropdown = static_cast<lv_obj_t*>(lv_event_get_target(event));
|
|
uint32_t idx = lv_dropdown_get_selected(dropdown);
|
|
if (idx < (sizeof(TIMEOUT_VALUES_MS) / sizeof(TIMEOUT_VALUES_MS[0]))) {
|
|
app->kbSettings.backlightTimeoutMs = TIMEOUT_VALUES_MS[idx];
|
|
app->updated = true;
|
|
}
|
|
}
|
|
|
|
public:
|
|
void onShow(AppContext& app, lv_obj_t* parent) override {
|
|
kbSettings = settings::keyboard::loadOrGetDefault();
|
|
updated = false;
|
|
|
|
lv_obj_set_flex_flow(parent, LV_FLEX_FLOW_COLUMN);
|
|
lv_obj_set_style_pad_row(parent, 0, LV_STATE_DEFAULT);
|
|
|
|
lvgl::toolbar_create(parent, app);
|
|
|
|
auto* main_wrapper = lv_obj_create(parent);
|
|
lv_obj_set_flex_flow(main_wrapper, LV_FLEX_FLOW_COLUMN);
|
|
lv_obj_set_width(main_wrapper, LV_PCT(100));
|
|
lv_obj_set_flex_grow(main_wrapper, 1);
|
|
|
|
// Keyboard backlight toggle
|
|
auto* bl_wrapper = lv_obj_create(main_wrapper);
|
|
lv_obj_set_size(bl_wrapper, LV_PCT(100), LV_SIZE_CONTENT);
|
|
lv_obj_set_style_pad_all(bl_wrapper, 0, LV_STATE_DEFAULT);
|
|
lv_obj_set_style_border_width(bl_wrapper, 0, LV_STATE_DEFAULT);
|
|
|
|
auto* bl_label = lv_label_create(bl_wrapper);
|
|
lv_label_set_text(bl_label, "Keyboard backlight");
|
|
lv_obj_align(bl_label, LV_ALIGN_LEFT_MID, 0, 0);
|
|
switchBacklight = lv_switch_create(bl_wrapper);
|
|
if (kbSettings.backlightEnabled) lv_obj_add_state(switchBacklight, LV_STATE_CHECKED);
|
|
lv_obj_align(switchBacklight, LV_ALIGN_RIGHT_MID, 0, 0);
|
|
lv_obj_add_event_cb(switchBacklight, onBacklightSwitch, LV_EVENT_VALUE_CHANGED, this);
|
|
|
|
// Brightness slider
|
|
auto* br_wrapper = lv_obj_create(main_wrapper);
|
|
lv_obj_set_size(br_wrapper, LV_PCT(100), LV_SIZE_CONTENT);
|
|
lv_obj_set_style_pad_all(br_wrapper, 0, LV_STATE_DEFAULT);
|
|
lv_obj_set_style_border_width(br_wrapper, 0, LV_STATE_DEFAULT);
|
|
|
|
auto* br_label = lv_label_create(br_wrapper);
|
|
lv_label_set_text(br_label, "Brightness");
|
|
lv_obj_align(br_label, LV_ALIGN_LEFT_MID, 0, 0);
|
|
sliderBrightness = lv_slider_create(br_wrapper);
|
|
lv_obj_set_width(sliderBrightness, LV_PCT(50));
|
|
lv_obj_align(sliderBrightness, LV_ALIGN_RIGHT_MID, 0, 0);
|
|
lv_slider_set_range(sliderBrightness, 0, 255);
|
|
lv_slider_set_value(sliderBrightness, kbSettings.backlightBrightness, LV_ANIM_OFF);
|
|
if (!kbSettings.backlightEnabled) lv_obj_add_state(sliderBrightness, LV_STATE_DISABLED);
|
|
lv_obj_add_event_cb(sliderBrightness, onBrightnessChanged, LV_EVENT_VALUE_CHANGED, this);
|
|
|
|
// Backlight timeout enable
|
|
auto* to_enable_wrapper = lv_obj_create(main_wrapper);
|
|
lv_obj_set_size(to_enable_wrapper, LV_PCT(100), LV_SIZE_CONTENT);
|
|
lv_obj_set_style_pad_all(to_enable_wrapper, 0, LV_STATE_DEFAULT);
|
|
lv_obj_set_style_border_width(to_enable_wrapper, 0, LV_STATE_DEFAULT);
|
|
|
|
auto* to_enable_label = lv_label_create(to_enable_wrapper);
|
|
lv_label_set_text(to_enable_label, "Auto backlight off");
|
|
lv_obj_align(to_enable_label, LV_ALIGN_LEFT_MID, 0, 0);
|
|
switchTimeoutEnable = lv_switch_create(to_enable_wrapper);
|
|
if (kbSettings.backlightTimeoutEnabled) lv_obj_add_state(switchTimeoutEnable, LV_STATE_CHECKED);
|
|
lv_obj_align(switchTimeoutEnable, LV_ALIGN_RIGHT_MID, 0, 0);
|
|
lv_obj_add_event_cb(switchTimeoutEnable, onTimeoutEnableSwitch, LV_EVENT_VALUE_CHANGED, this);
|
|
|
|
auto* timeout_select_wrapper = lv_obj_create(main_wrapper);
|
|
lv_obj_set_size(timeout_select_wrapper, LV_PCT(100), LV_SIZE_CONTENT);
|
|
lv_obj_set_style_pad_all(timeout_select_wrapper, 0, LV_STATE_DEFAULT);
|
|
lv_obj_set_style_border_width(timeout_select_wrapper, 0, LV_STATE_DEFAULT);
|
|
|
|
auto* timeout_value_label = lv_label_create(timeout_select_wrapper);
|
|
lv_label_set_text(timeout_value_label, "Timeout");
|
|
lv_obj_align(timeout_value_label, LV_ALIGN_LEFT_MID, 0, 0);
|
|
|
|
// Backlight timeout value (seconds)
|
|
timeoutDropdown = lv_dropdown_create(timeout_select_wrapper);
|
|
lv_dropdown_set_options(timeoutDropdown, "15 seconds\n30 seconds\n1 minute\n2 minutes\n5 minutes\nNever");
|
|
lv_obj_align(timeoutDropdown, LV_ALIGN_RIGHT_MID, 0, 0);
|
|
lv_obj_set_style_border_color(timeoutDropdown, lv_color_hex(0xFAFAFA), LV_PART_MAIN);
|
|
lv_obj_set_style_border_width(timeoutDropdown, 1, LV_PART_MAIN);
|
|
lv_obj_add_event_cb(timeoutDropdown, onTimeoutChanged, LV_EVENT_VALUE_CHANGED, this);
|
|
// Initialize dropdown selection from settings
|
|
lv_dropdown_set_selected(timeoutDropdown, timeoutMsToIndex(kbSettings.backlightTimeoutMs));
|
|
if (!kbSettings.backlightTimeoutEnabled) {
|
|
lv_obj_add_state(timeoutDropdown, LV_STATE_DISABLED);
|
|
}
|
|
}
|
|
|
|
void onHide(AppContext& app) override {
|
|
if (updated) {
|
|
const auto copy = kbSettings;
|
|
getMainDispatcher().dispatch([copy]{ settings::keyboard::save(copy); });
|
|
updated = false;
|
|
}
|
|
}
|
|
};
|
|
|
|
extern const AppManifest manifest = {
|
|
.appId = "KeyboardSettings",
|
|
.appName = "Keyboard",
|
|
.appIcon = LVGL_ICON_SHARED_KEYBOARD_ALT,
|
|
.appCategory = Category::Settings,
|
|
.createApp = create<KeyboardSettingsApp>
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|