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:
committed by
GitHub
parent
faab6d825f
commit
41ad569154
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user