From 339eef775f5845e823d92005a3058e1ee61c9b7c Mon Sep 17 00:00:00 2001 From: Ben Date: Tue, 28 Apr 2026 17:10:32 -0700 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);