From 1f54f39956bcefe8400f13d2b090cfc096b2b10a Mon Sep 17 00:00:00 2001 From: nick Date: Tue, 30 Jun 2026 22:12:55 -0600 Subject: [PATCH] debug: add relay set route to active isolation setup --- firmware/esp32/overland-controller/overland-controller.ino | 2 ++ 1 file changed, 2 insertions(+) diff --git a/firmware/esp32/overland-controller/overland-controller.ino b/firmware/esp32/overland-controller/overland-controller.ino index f636511..4260f5a 100644 --- a/firmware/esp32/overland-controller/overland-controller.ino +++ b/firmware/esp32/overland-controller/overland-controller.ino @@ -4126,6 +4126,8 @@ void setup() { server.on(API_V1("/health"), HTTP_GET, handleHealth); server.on(API_V1("/capabilities"), HTTP_GET, handleCapabilities); server.on(API_V1("/status"), handleStatus); + server.on(API_V1("/relay/set"), HTTP_POST, handleSetRelayPost); +