UI/UX improvements for small screen devices (#340)

- Improved UI/UX of various WiFi apps to make it compatible with Cardputer.
- Improved UI/UX of Serial Console to make it compatible with Cardputer.
- Boot app now shows a smaller logo on Cardputer
- CrashDiagnostics app: Use different text if no touch screen is present
This commit is contained in:
Ken Van Hoeylandt
2025-09-20 00:19:29 +02:00
committed by GitHub
parent faab6d825f
commit 41ad569154
17 changed files with 386 additions and 283 deletions
@@ -13,7 +13,7 @@ constexpr auto TAG = "WifiManage";
extern const AppManifest manifest;
static void onConnect(const char* ssid) {
static void onConnect(const std::string& ssid) {
service::wifi::settings::WifiApSettings settings;
if (service::wifi::settings::load(ssid, settings)) {
TT_LOG_I(TAG, "Connecting with known credentials");
@@ -24,7 +24,7 @@ static void onConnect(const char* ssid) {
}
}
static void onShowApSettings(const char* ssid) {
static void onShowApSettings(const std::string& ssid) {
wifiapsettings::start(ssid);
}