Add WiFi HTTP and UART configuration parity

This commit is contained in:
2026-06-04 13:17:07 -06:00
parent a90d01aa0d
commit edfd6021e1
2 changed files with 170 additions and 0 deletions
+30
View File
@@ -160,3 +160,33 @@ The UART protocol should eventually support the same management capabilities as
- HTTP is useful for setup, debugging, and future web UI.
- USB serial remains the emergency service/debug interface.
- The Pico should not depend on WiFi for normal control.
## WiFi Config Request
Pico sends:
{"type":"wifi_request"}
ESP32 responds:
{"type":"wifi_config_response","ok":true,"wifi":{}}
## WiFi Config Update
Pico sends:
{"type":"config_wifi","ssid":"Starlink","password":"password_here"}
## WiFi Connect
Pico sends:
{"type":"wifi_connect"}
## WiFi Clear
Pico sends:
{"type":"wifi_clear"}
AP mode remains enabled as the recovery path.