50c0a14a93
- Added kernel base drivers for: display, pointer (touch, mouse, etc.), keyboard, adc, power supply and backlight - Implement new kernel driver modules: `st7789-module` and `gt911-module` - Implement ESP32 ADC "oneshot" kernel driver - Implement ESP32 backlight kernel driver with ledc API - Implemented `battery-sense` driver that allows for voltage measurement and creates a power supply child device - Updated github actions - Updated flash scripts - Fix for esp32 legacy driver conflict with ADC - Created separate `lilygo-tdeck` and `lilygo-tdeck-plus` devices - Created `lilygo-module` with LilyGO kernel drivers - Fix for intermittent errors in build related to code generation of `devicetree.c` - `lvgl-module` can now map kernel drivers onto LVGL devices - Created `KernelDisplayApp` as a mirror of `HalDisplayApp` (formerly `DisplayApp`) - Removed `struct` and `enum` prefix in a lot of kernel driver cpp source files - `lilygo-tdeck` and `lilygo-tdeck-plus` are now fully relying on kernel drivers and don't use any of the old HAL
106 lines
4.1 KiB
C++
106 lines
4.1 KiB
C++
#include <Tactility/app/AppContext.h>
|
|
#include <Tactility/app/AppRegistration.h>
|
|
#include <Tactility/hal/display/DisplayDevice.h>
|
|
#include <Tactility/service/loader/Loader.h>
|
|
|
|
#include <lvgl.h>
|
|
#include <tactility/device.h>
|
|
#include <tactility/drivers/power_supply.h>
|
|
#include <tactility/hal/Device.h>
|
|
#include <tactility/lvgl_fonts.h>
|
|
#include <tactility/lvgl_icon_shared.h>
|
|
|
|
namespace tt::app::poweroff {
|
|
|
|
extern const AppManifest manifest;
|
|
|
|
class PowerOffApp final : public App {
|
|
|
|
/** Replaces the screen with a plain "powered off" message, forces it to draw
|
|
* synchronously, and waits for the display to confirm the draw physically
|
|
* finished. On e-paper this is what's left showing once power cuts, so it
|
|
* doubles as visual confirmation that the device shut down cleanly rather
|
|
* than crashed or hung. Called from an LVGL button click callback, so it's
|
|
* already running on the LVGL thread. */
|
|
static void showPoweredOffScreenAndWait(hal::display::DisplayDevice* display) {
|
|
auto* screen = lv_obj_create(nullptr);
|
|
lv_obj_set_style_bg_color(screen, lv_color_white(), 0);
|
|
lv_obj_set_flex_flow(screen, LV_FLEX_FLOW_COLUMN);
|
|
lv_obj_set_flex_align(screen, LV_FLEX_ALIGN_CENTER, LV_FLEX_ALIGN_CENTER, LV_FLEX_ALIGN_CENTER);
|
|
|
|
auto* title = lv_label_create(screen);
|
|
lv_label_set_text(title, "Tactility OS");
|
|
lv_obj_set_style_text_font(title, lvgl_get_text_font(FONT_SIZE_LARGE), 0);
|
|
lv_obj_set_style_text_color(title, lv_color_black(), 0);
|
|
|
|
auto* subtitle = lv_label_create(screen);
|
|
lv_label_set_text(subtitle, "Powered off");
|
|
lv_obj_set_style_text_color(subtitle, lv_color_black(), 0);
|
|
|
|
lv_screen_load(screen);
|
|
|
|
if (display != nullptr) {
|
|
auto* lvgl_display = display->getLvglDisplay();
|
|
if (lvgl_display != nullptr) {
|
|
lv_refr_now(lvgl_display);
|
|
}
|
|
display->waitForFlushComplete();
|
|
}
|
|
}
|
|
|
|
static void onYesPressed(lv_event_t* /*event*/) {
|
|
auto* power = device_find_first_active_by_type(&POWER_SUPPLY_TYPE);
|
|
if (power == nullptr || !power_supply_supports_power_off(power)) {
|
|
return;
|
|
}
|
|
|
|
auto display = hal::findFirstDevice<hal::display::DisplayDevice>(hal::Device::Type::Display);
|
|
showPoweredOffScreenAndWait(display.get());
|
|
|
|
power_supply_power_off(power);
|
|
}
|
|
|
|
static void onNoPressed(lv_event_t* /*event*/) {
|
|
stop(manifest.appId);
|
|
}
|
|
|
|
public:
|
|
|
|
void onShow(AppContext& /*app*/, lv_obj_t* parent) override {
|
|
lv_obj_set_flex_flow(parent, LV_FLEX_FLOW_COLUMN);
|
|
lv_obj_set_flex_align(parent, LV_FLEX_ALIGN_CENTER, LV_FLEX_ALIGN_CENTER, LV_FLEX_ALIGN_CENTER);
|
|
|
|
auto* label = lv_label_create(parent);
|
|
lv_label_set_text(label, "Power off?");
|
|
lv_obj_set_style_text_font(label, lvgl_get_text_font(FONT_SIZE_LARGE), 0);
|
|
|
|
auto* button_wrapper = lv_obj_create(parent);
|
|
lv_obj_set_flex_flow(button_wrapper, LV_FLEX_FLOW_ROW);
|
|
lv_obj_set_size(button_wrapper, LV_SIZE_CONTENT, LV_SIZE_CONTENT);
|
|
lv_obj_set_style_pad_all(button_wrapper, 0, 0);
|
|
lv_obj_set_style_border_width(button_wrapper, 0, 0);
|
|
lv_obj_set_flex_align(button_wrapper, LV_FLEX_ALIGN_CENTER, LV_FLEX_ALIGN_CENTER, LV_FLEX_ALIGN_CENTER);
|
|
|
|
auto* yes_button = lv_button_create(button_wrapper);
|
|
auto* yes_label = lv_label_create(yes_button);
|
|
lv_label_set_text(yes_label, "Yes");
|
|
lv_obj_add_event_cb(yes_button, onYesPressed, LV_EVENT_SHORT_CLICKED, nullptr);
|
|
|
|
auto* no_button = lv_button_create(button_wrapper);
|
|
auto* no_label = lv_label_create(no_button);
|
|
lv_label_set_text(no_label, "No");
|
|
lv_obj_add_event_cb(no_button, onNoPressed, LV_EVENT_SHORT_CLICKED, nullptr);
|
|
}
|
|
};
|
|
|
|
extern const AppManifest manifest = {
|
|
.appId = "PowerOff",
|
|
.appName = "Power Off",
|
|
.appIcon = LVGL_ICON_SHARED_POWER_SETTINGS_NEW,
|
|
.appCategory = Category::Settings,
|
|
.appFlags = AppManifest::Flags::HideStatusBar,
|
|
.createApp = create<PowerOffApp>
|
|
};
|
|
|
|
} // namespace
|