From ab52dcb1c3a04262e38c5199bbe0fc69da847b66 Mon Sep 17 00:00:00 2001 From: Ben Date: Thu, 12 Dec 2024 12:00:00 -0800 Subject: [PATCH] Sanitize WiFi credentials and sync to personal git --- Sapphire_ESP32.ino | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Sapphire_ESP32.ino b/Sapphire_ESP32.ino index c152e7b..18b668d 100644 --- a/Sapphire_ESP32.ino +++ b/Sapphire_ESP32.ino @@ -6,8 +6,8 @@ #include // WiFi Credentials -const char* ssid = "Jelly"; -const char* password = "jellydoodle"; +const char* ssid = "SSID_PLACEHOLDER"; +const char* password = "PASSWORD_PLACEHOLDER"; // Web Server & WebSocket AsyncWebServer server(80);