From 6e19e6f0a020ee6e9802fa831e0d2db266248a51 Mon Sep 17 00:00:00 2001 From: Blaz Kristan Date: Tue, 2 Mar 2021 11:46:25 +0100 Subject: [PATCH] Add reserved pins for ESP32 too. --- wled00/xml.cpp | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/wled00/xml.cpp b/wled00/xml.cpp index 7f2f2705..739137c1 100644 --- a/wled00/xml.cpp +++ b/wled00/xml.cpp @@ -276,12 +276,10 @@ void getSettingsJS(byte subPage, char* dest) } } } - #ifdef ESP8266 - if (i) oappend(SET_F(",")); - oappend(SET_F("6,7,8,9,10,11")); // flash memory pins - #ifdef WLED_DEBUG - oappend(SET_F(",1")); - #endif + if (i) oappend(SET_F(",")); + oappend(SET_F("6,7,8,9,10,11")); // flash memory pins + #ifdef WLED_DEBUG + oappend(SET_F(",1")); #endif } oappend(SET_F("];"));