updated test code for arduino

This commit is contained in:
strawmanbobi
2025-11-26 17:50:49 +08:00
parent deeebc5c53
commit 1005945ad8
4 changed files with 13 additions and 4 deletions

View File

@@ -5,7 +5,7 @@
#ifndef ARDUINO_EXAMPLE_CONFIGURE_H
#define ARDUINO_EXAMPLE_CONFIGURE_H
#define SECRET_SSID "Strawmanbobi"
#define SECRET_PASS "ghostcicy"
#define SECRET_SSID "Maomao的小房子"
#define SECRET_PASS "Maomao121207"
#endif //ARDUINO_EXAMPLE_CONFIGURE_H

View File

@@ -51,11 +51,11 @@ void setup() {
if (status == WL_CONNECTED) {
// If connected successfully
Serial.println("\nConnection Successful!");
Serial.println("\nConnection Successful!");
printWiFiStatus();
} else {
// If connection failed
Serial.print("\nConnection Failed! Status: ");
Serial.print("\nConnection Failed! Status: ");
Serial.println(status);
}
}