From ab28b6d58fad3636dbbe9bc0e83ad314d9b4a3d5 Mon Sep 17 00:00:00 2001 From: Will Miles Date: Sat, 7 Jun 2025 11:08:11 -0400 Subject: [PATCH] Update crude parallel I2S detection My ESP32s are now reporting a maximum of 32 buses. --- wled00/data/settings_leds.htm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wled00/data/settings_leds.htm b/wled00/data/settings_leds.htm index d5151231e..66bc2f000 100644 --- a/wled00/data/settings_leds.htm +++ b/wled00/data/settings_leds.htm @@ -353,7 +353,7 @@ }); const S2 = (oMaxB == 14) && (maxV == 4); const S3 = (oMaxB == 14) && (maxV == 6); - if (oMaxB == 19 || S2 || S3) { // TODO: crude ESP32 & S2/S3 detection + if (oMaxB == 32 || S2 || S3) { // TODO: crude ESP32 & S2/S3 detection if (maxLC > 300 || dC <= 2) { d.Sf["PR"].checked = false; gId("prl").classList.add("hide");