From ffe2ce7859fa1ddf0b75dd544d30d005dfcc6bb0 Mon Sep 17 00:00:00 2001 From: MartinMueller2003 Date: Mon, 12 Feb 2024 09:25:39 -0500 Subject: [PATCH] Fixed default ssid and pasphrase. --- pio_examples/gui/src/gui.ino | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pio_examples/gui/src/gui.ino b/pio_examples/gui/src/gui.ino index 8953a0d..f60ffdc 100644 --- a/pio_examples/gui/src/gui.ino +++ b/pio_examples/gui/src/gui.ino @@ -11,8 +11,8 @@ DNSServer dnsServer; #include #endif -const char* ssid = "MaRtInG"; -const char* password = "martinshomenetwork"; +const char* ssid = "YourNetworkName"; +const char* password = "YourNetworkPassphrase"; const char* hostname = "espui";