diff --git a/wled00/const.h b/wled00/const.h index 49d4e327f..48381dfd4 100644 --- a/wled00/const.h +++ b/wled00/const.h @@ -11,13 +11,17 @@ #define DEFAULT_OTA_PASS "wledota" //increase if you need more -#define WLED_MAX_USERMODS 4 +#ifdef ESP8266 + #define WLED_MAX_USERMODS 4 +#else + #define WLED_MAX_USERMODS 6 +#endif #ifndef WLED_MAX_BUSSES #ifdef ESP8266 #define WLED_MAX_BUSSES 3 #else - #ifdef ARDUINO_ARCH_ESP32S2 + #ifdef CONFIG_IDF_TARGET_ESP32S2 #define WLED_MAX_BUSSES 5 #else #define WLED_MAX_BUSSES 10 diff --git a/wled00/wled.h b/wled00/wled.h index f3ce04fa9..6de54b9b8 100644 --- a/wled00/wled.h +++ b/wled00/wled.h @@ -8,7 +8,7 @@ */ // version code in format yymmddb (b = daily build) -#define VERSION 2105031 +#define VERSION 2105041 //uncomment this if you have a "my_config.h" file you'd like to use //#define WLED_USE_MY_CONFIG