feature/netman #1

Merged
tomislav merged 12 commits from feature/netman into master 2024-11-05 19:43:41 +00:00
Showing only changes of commit f835aa0122 - Show all commits

View File

@ -103,8 +103,7 @@ bool netman::tryConnect() {
return false;
}
// Attempt to connect to a specific SSID with timeout
// Attempt to connect to a specific SSID with timeout and dot animation
// Attempt to connect to a specific SSID with timeout, dot animation, and IP display
bool netman::tryConnectToSsid(const char* ssid, const char* pass) {
WiFi.begin(ssid, pass);
unsigned long start = millis();
@ -122,23 +121,24 @@ bool netman::tryConnectToSsid(const char* ssid, const char* pass) {
// Check WiFi connection status
if (WiFi.status() == WL_CONNECTED) {
// Success message
// Success message with IP address
display.clearDisplay();
display.setCursor(0, 0);
display.println("Connected!");
display.setCursor(0, 10);
display.print("IP: ");
display.println(WiFi.localIP());
display.display();
return true;
}
// Animate by adding dots up to three, then reset
display.setCursor(0, 20);
display.print("Connecting");
for (int i = 0; i < dotCount; i++) {
display.print(".");
}
display.display();
dotCount = (dotCount + 1) % 4; // Cycle dot count from 0 to 3
dotCount = (dotCount + 1);
}
// Connection failed