Remove uncompressed style.css. Combine SSID/PWD on same line and toggle between the two every 10 seconds.

This commit is contained in:
Jm Casler
2020-10-19 16:58:11 -07:00
parent ff20b29c3c
commit e9279919ae
2 changed files with 1 additions and 278 deletions

View File

@@ -1042,7 +1042,7 @@ void DebugInfo::drawFrameWiFi(OLEDDisplay *display, OLEDDisplayUiState *state, i
}
}
if ((millis() / 1000) % 2) {
if ((millis() / 10000) % 2) {
display->drawString(x, y + FONT_HEIGHT_SMALL * 2, "SSID: " + String(wifiName));
} else {
display->drawString(x, y + FONT_HEIGHT_SMALL * 2, "PWD: " + String(wifiPsw));