## Launcher - Launcher now has optional power button to show - Launcher layout improvements - Removed text from Launcher (translations with larger amounts of text did not fit small device formats) ## T-Lora Pager - Implement power off (created `BQ25896` driver) - Implemented haptics (created `DRV2605` driver project) and buzz on startup - Reversed scroll wheel - Created `TloraEncoder` device and relocated its logic from `TloraKeyboard` - Disabled SPIRAM test to save 0.5 seconds of boot time (current boot time is very slow) - Update `ST7796` esp_lcd driver to v1.3.4 - Fixed keyboard bug: delete queue in destructor - Fixed driver dependencies: Avoiding usage of global static shared_ptr. Properly constructor-inject everywhere, or use `tt::hal::findDevices()` - I2C configuration is now immutable (you cannot disable it anymore from the I2C Settings app, as it would break crucial drivers) - Renamed I2C and UART subsystems to "Internal" ## Drivers - On/off interface added to `PowerDevice` - Created `tt::hal::Configuration.createDevices`, which is intended to replace all custom create calls for display, keyboard, etc. - Created `EncoderDevice` as a `Device` subtype ## Other Improvements - Changed `findDevices(type, function)` into a templatized function. - Improved SD card mounting ## Fixes - Show Screenshot app again - Fixed Statusbar: some updates were allowed to time out and fail silently: When the Statusbar service would do a state update, the LVGL statusbar would never get updated due to this timeout. - Fixed memory leaks in all `createSdCard()` functions (in most board implementations)
285 lines
9.2 KiB
C++
285 lines
9.2 KiB
C++
#include "Tactility/lvgl/Statusbar.h"
|
|
#include "Tactility/lvgl/LvglSync.h"
|
|
|
|
#include "Tactility/hal/power/PowerDevice.h"
|
|
#include "Tactility/hal/sdcard/SdCardDevice.h"
|
|
#include "Tactility/service/gps/GpsService.h"
|
|
#include <Tactility/Mutex.h>
|
|
#include <Tactility/Tactility.h>
|
|
#include <Tactility/TactilityHeadless.h>
|
|
#include <Tactility/Timer.h>
|
|
#include <Tactility/service/ServiceContext.h>
|
|
#include <Tactility/service/ServiceRegistration.h>
|
|
#include <Tactility/service/wifi/Wifi.h>
|
|
|
|
namespace tt::service::statusbar {
|
|
|
|
#define TAG "statusbar_service"
|
|
|
|
// SD card status
|
|
#define STATUSBAR_ICON_SDCARD "sdcard.png"
|
|
#define STATUSBAR_ICON_SDCARD_ALERT "sdcard_alert.png"
|
|
|
|
// Wifi status
|
|
#define STATUSBAR_ICON_WIFI_OFF_WHITE "wifi_off_white.png"
|
|
#define STATUSBAR_ICON_WIFI_SCAN_WHITE "wifi_scan_white.png"
|
|
#define STATUSBAR_ICON_WIFI_SIGNAL_WEAK_WHITE "wifi_signal_weak_white.png"
|
|
#define STATUSBAR_ICON_WIFI_SIGNAL_MEDIUM_WHITE "wifi_signal_medium_white.png"
|
|
#define STATUSBAR_ICON_WIFI_SIGNAL_STRONG_WHITE "wifi_signal_strong_white.png"
|
|
|
|
// Power status
|
|
#define STATUSBAR_ICON_POWER_0 "power_0.png"
|
|
#define STATUSBAR_ICON_POWER_10 "power_10.png"
|
|
#define STATUSBAR_ICON_POWER_20 "power_20.png"
|
|
#define STATUSBAR_ICON_POWER_30 "power_30.png"
|
|
#define STATUSBAR_ICON_POWER_40 "power_40.png"
|
|
#define STATUSBAR_ICON_POWER_50 "power_50.png"
|
|
#define STATUSBAR_ICON_POWER_60 "power_60.png"
|
|
#define STATUSBAR_ICON_POWER_70 "power_70.png"
|
|
#define STATUSBAR_ICON_POWER_80 "power_80.png"
|
|
#define STATUSBAR_ICON_POWER_90 "power_90.png"
|
|
#define STATUSBAR_ICON_POWER_100 "power_100.png"
|
|
|
|
// GPS
|
|
#define STATUSBAR_ICON_GPS "location.png"
|
|
|
|
extern const ServiceManifest manifest;
|
|
|
|
const char* getWifiStatusIconForRssi(int rssi) {
|
|
if (rssi >= -60) {
|
|
return STATUSBAR_ICON_WIFI_SIGNAL_STRONG_WHITE;
|
|
} else if (rssi >= -70) {
|
|
return STATUSBAR_ICON_WIFI_SIGNAL_MEDIUM_WHITE;
|
|
} else {
|
|
return STATUSBAR_ICON_WIFI_SIGNAL_WEAK_WHITE;
|
|
}
|
|
}
|
|
|
|
static const char* getWifiStatusIcon(wifi::RadioState state, bool secure) {
|
|
int rssi;
|
|
switch (state) {
|
|
using enum wifi::RadioState;
|
|
case On:
|
|
case OnPending:
|
|
case ConnectionPending:
|
|
return STATUSBAR_ICON_WIFI_SCAN_WHITE;
|
|
case OffPending:
|
|
case Off:
|
|
return STATUSBAR_ICON_WIFI_OFF_WHITE;
|
|
case ConnectionActive:
|
|
rssi = wifi::getRssi();
|
|
return getWifiStatusIconForRssi(rssi);
|
|
default:
|
|
tt_crash("not implemented");
|
|
}
|
|
}
|
|
|
|
static const char* getSdCardStatusIcon(hal::sdcard::SdCardDevice::State state) {
|
|
switch (state) {
|
|
using enum hal::sdcard::SdCardDevice::State;
|
|
case Mounted:
|
|
return STATUSBAR_ICON_SDCARD;
|
|
case Error:
|
|
case Unmounted:
|
|
case Timeout:
|
|
return STATUSBAR_ICON_SDCARD_ALERT;
|
|
default:
|
|
tt_crash("Unhandled SdCard state");
|
|
}
|
|
}
|
|
|
|
static _Nullable const char* getPowerStatusIcon() {
|
|
// TODO: Support multiple power devices?
|
|
std::shared_ptr<hal::power::PowerDevice> power;
|
|
hal::findDevices<hal::power::PowerDevice>(hal::Device::Type::Power, [&power](const auto& device) {
|
|
if (device->supportsMetric(hal::power::PowerDevice::MetricType::ChargeLevel)) {
|
|
power = device;
|
|
return false;
|
|
}
|
|
return true;
|
|
});
|
|
|
|
if (power == nullptr) {
|
|
return nullptr;
|
|
}
|
|
|
|
hal::power::PowerDevice::MetricData charge_level;
|
|
if (!power->getMetric(hal::power::PowerDevice::MetricType::ChargeLevel, charge_level)) {
|
|
return nullptr;
|
|
}
|
|
|
|
uint8_t charge = charge_level.valueAsUint8;
|
|
|
|
if (charge >= 95) {
|
|
return STATUSBAR_ICON_POWER_100;
|
|
} else if (charge >= 85) {
|
|
return STATUSBAR_ICON_POWER_90;
|
|
} else if (charge >= 75) {
|
|
return STATUSBAR_ICON_POWER_80;
|
|
} else if (charge >= 65) {
|
|
return STATUSBAR_ICON_POWER_70;
|
|
} else if (charge >= 55) {
|
|
return STATUSBAR_ICON_POWER_60;
|
|
} else if (charge >= 45) {
|
|
return STATUSBAR_ICON_POWER_50;
|
|
} else if (charge >= 35) {
|
|
return STATUSBAR_ICON_POWER_40;
|
|
} else if (charge >= 25) {
|
|
return STATUSBAR_ICON_POWER_30;
|
|
} else if (charge >= 15) {
|
|
return STATUSBAR_ICON_POWER_20;
|
|
} else if (charge >= 5) {
|
|
return STATUSBAR_ICON_POWER_10;
|
|
} else {
|
|
return STATUSBAR_ICON_POWER_0;
|
|
}
|
|
}
|
|
|
|
class StatusbarService final : public Service {
|
|
|
|
Mutex mutex;
|
|
std::unique_ptr<Timer> updateTimer;
|
|
int8_t gps_icon_id;
|
|
bool gps_last_state = false;
|
|
int8_t wifi_icon_id;
|
|
const char* wifi_last_icon = nullptr;
|
|
int8_t sdcard_icon_id;
|
|
const char* sdcard_last_icon = nullptr;
|
|
int8_t power_icon_id;
|
|
const char* power_last_icon = nullptr;
|
|
|
|
std::unique_ptr<Paths> paths;
|
|
|
|
void lock() const {
|
|
mutex.lock();
|
|
}
|
|
|
|
void unlock() const {
|
|
mutex.unlock();
|
|
}
|
|
|
|
void updateGpsIcon() {
|
|
auto gps_state = gps::findGpsService()->getState();
|
|
bool show_icon = (gps_state == gps::State::OnPending) || (gps_state == gps::State::On);
|
|
if (gps_last_state != show_icon) {
|
|
if (show_icon) {
|
|
auto icon_path = paths->getSystemPathLvgl(STATUSBAR_ICON_GPS);
|
|
lvgl::statusbar_icon_set_image(gps_icon_id, icon_path);
|
|
lvgl::statusbar_icon_set_visibility(gps_icon_id, true);
|
|
} else {
|
|
lvgl::statusbar_icon_set_visibility(gps_icon_id, false);
|
|
}
|
|
gps_last_state = show_icon;
|
|
}
|
|
}
|
|
|
|
void updateWifiIcon() {
|
|
wifi::RadioState radio_state = wifi::getRadioState();
|
|
bool is_secure = wifi::isConnectionSecure();
|
|
const char* desired_icon = getWifiStatusIcon(radio_state, is_secure);
|
|
if (wifi_last_icon != desired_icon) {
|
|
if (desired_icon != nullptr) {
|
|
auto icon_path = paths->getSystemPathLvgl(desired_icon);
|
|
lvgl::statusbar_icon_set_image(wifi_icon_id, icon_path);
|
|
lvgl::statusbar_icon_set_visibility(wifi_icon_id, true);
|
|
} else {
|
|
lvgl::statusbar_icon_set_visibility(wifi_icon_id, false);
|
|
}
|
|
wifi_last_icon = desired_icon;
|
|
}
|
|
}
|
|
|
|
void updatePowerStatusIcon() {
|
|
const char* desired_icon = getPowerStatusIcon();
|
|
if (power_last_icon != desired_icon) {
|
|
if (desired_icon != nullptr) {
|
|
auto icon_path = paths->getSystemPathLvgl(desired_icon);
|
|
lvgl::statusbar_icon_set_image(power_icon_id, icon_path);
|
|
lvgl::statusbar_icon_set_visibility(power_icon_id, true);
|
|
} else {
|
|
lvgl::statusbar_icon_set_visibility(power_icon_id, false);
|
|
}
|
|
power_last_icon = desired_icon;
|
|
}
|
|
}
|
|
|
|
void updateSdCardIcon() {
|
|
auto sdcards = hal::findDevices<hal::sdcard::SdCardDevice>(hal::Device::Type::SdCard);
|
|
// TODO: Support multiple SD cards
|
|
auto sdcard = sdcards.empty() ? nullptr : sdcards[0];
|
|
if (sdcard != nullptr) {
|
|
auto state = sdcard->getState(50 / portTICK_PERIOD_MS);
|
|
if (state != hal::sdcard::SdCardDevice::State::Timeout) {
|
|
auto* desired_icon = getSdCardStatusIcon(state);
|
|
if (sdcard_last_icon != desired_icon) {
|
|
auto icon_path = paths->getSystemPathLvgl(desired_icon);
|
|
lvgl::statusbar_icon_set_image(sdcard_icon_id, icon_path);
|
|
lvgl::statusbar_icon_set_visibility(sdcard_icon_id, true);
|
|
sdcard_last_icon = desired_icon;
|
|
}
|
|
}
|
|
// TODO: Consider tracking how long the SD card has been in unknown status and then show error
|
|
}
|
|
}
|
|
|
|
void update() {
|
|
// TODO: Make thread-safe for LVGL
|
|
updateGpsIcon();
|
|
updateWifiIcon();
|
|
updateSdCardIcon();
|
|
updatePowerStatusIcon();
|
|
}
|
|
|
|
static void onUpdate(const std::shared_ptr<StatusbarService>& service) {
|
|
service->update();
|
|
}
|
|
|
|
public:
|
|
|
|
StatusbarService() {
|
|
gps_icon_id = lvgl::statusbar_icon_add();
|
|
sdcard_icon_id = lvgl::statusbar_icon_add();
|
|
wifi_icon_id = lvgl::statusbar_icon_add();
|
|
power_icon_id = lvgl::statusbar_icon_add();
|
|
}
|
|
|
|
~StatusbarService() override {
|
|
lvgl::statusbar_icon_remove(wifi_icon_id);
|
|
lvgl::statusbar_icon_remove(sdcard_icon_id);
|
|
lvgl::statusbar_icon_remove(power_icon_id);
|
|
lvgl::statusbar_icon_remove(gps_icon_id);
|
|
}
|
|
|
|
void onStart(ServiceContext& serviceContext) override {
|
|
paths = serviceContext.getPaths();
|
|
|
|
// TODO: Make thread-safe for LVGL
|
|
lvgl::statusbar_icon_set_visibility(wifi_icon_id, true);
|
|
|
|
auto service = findServiceById<StatusbarService>(manifest.id);
|
|
assert(service);
|
|
onUpdate(service);
|
|
|
|
updateTimer = std::make_unique<Timer>(Timer::Type::Periodic, [service] {
|
|
onUpdate(service);
|
|
});
|
|
|
|
// We want to try and scan more often in case of startup or scan lock failure
|
|
updateTimer->start(1000);
|
|
}
|
|
|
|
void onStop(ServiceContext& service) override{
|
|
updateTimer->stop();
|
|
updateTimer = nullptr;
|
|
}
|
|
};
|
|
|
|
extern const ServiceManifest manifest = {
|
|
.id = "Statusbar",
|
|
.createService = create<StatusbarService>
|
|
};
|
|
|
|
// endregion service
|
|
|
|
} // namespace
|