diff --git a/arduino-example/.idea/editor.xml b/arduino-example/.idea/editor.xml
index ead1d8a..0b8104f 100644
--- a/arduino-example/.idea/editor.xml
+++ b/arduino-example/.idea/editor.xml
@@ -244,5 +244,12 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/arduino-example/platformio.ini b/arduino-example/platformio.ini
index a4c293f..f40a5b9 100644
--- a/arduino-example/platformio.ini
+++ b/arduino-example/platformio.ini
@@ -12,6 +12,8 @@
platform = renesas-ra
board = uno_r4_wifi
framework = arduino
+upload_port = /dev/ttyACM0
+monitor_port = /dev/ttyACM0
monitor_speed = 115200
lib_deps =
WiFiS3
\ No newline at end of file
diff --git a/arduino-example/src/configure.h b/arduino-example/src/configure.h
index 114f879..28cb877 100644
--- a/arduino-example/src/configure.h
+++ b/arduino-example/src/configure.h
@@ -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
\ No newline at end of file
diff --git a/arduino-example/src/main.cpp b/arduino-example/src/main.cpp
index 08ad99a..88dd863 100644
--- a/arduino-example/src/main.cpp
+++ b/arduino-example/src/main.cpp
@@ -51,11 +51,11 @@ void setup() {
if (status == WL_CONNECTED) {
// If connected successfully
- Serial.println("\n✅ Connection Successful!");
+ Serial.println("\nConnection Successful!");
printWiFiStatus();
} else {
// If connection failed
- Serial.print("\n❌ Connection Failed! Status: ");
+ Serial.print("\nConnection Failed! Status: ");
Serial.println(status);
}
}