You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: platformio.ini
+145-8Lines changed: 145 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -72,6 +72,7 @@ default_envs =
72
72
esp32_pico_4MB_M
73
73
esp32_4MB_PSRAM_S
74
74
; esp32_4MB_PSRAM_REV3_S ;; experimental, optimized for WROVER-E with "revision3" chip
75
+
esp32S3_4MB_S
75
76
esp32S3_8MB_S ;; experimental, optimized for speed
76
77
esp32S3_8MB_M
77
78
esp32S3_4MB_PSRAM_S ;; for lolin s3 mini, S3 zero, S3 super mini - optimized for speed
@@ -80,10 +81,11 @@ default_envs =
80
81
;; esp32s2_tinyUF2_PSRAM_S ;; experimental - only for adafruit -S2 boards with tinyUF2 bootloader !!!
81
82
esp32s2_PSRAM_M ;; experimental
82
83
esp32c3dev_4MB_M ;; experimental
84
+
esp32c3dev_2MB_M ;; experimental - 2MB Flash, no OTA
83
85
esp32c3mini_dio_4MB_M ;; for boards that need "dio" flash mode (instead of qio)
84
86
seeed_esp32c3_4MB_S ;; experimental
85
87
esp32_4MB_V4_S ;; experimental
86
-
esp32_16MB_V4_S ;; experimental, optimized for speed
88
+
esp32_16MB_V4_S ;; experimental - optimized for speed
87
89
esp32_16MB_V4_M ;; experimental
88
90
esp32_16MB_V4_M_debug ;; experimental
89
91
esp32_pico_4MB_V4_S ;; experimental - may work better in case you experience wifi connectivity problems
@@ -186,6 +188,7 @@ build_flags =
186
188
-D DECODE_SONY=true
187
189
-D DECODE_SAMSUNG=true
188
190
-D DECODE_LG=true
191
+
-D FASTLED_NO_FASTLED
189
192
;-Dregister= # remove warnings in C++17 due to use of deprecated register keyword by the FastLED library ;; warning: this breaks framework code on ESP32-C3 and ESP32-S2
190
193
-DWLED_USE_MY_CONFIG
191
194
; -D USERMOD_SENSORSTOMQTT
@@ -239,6 +242,8 @@ upload_speed = 115200
239
242
lib_compat_mode = strict
240
243
lib_deps =
241
244
fastled/FastLED @ 3.6.0
245
+
;; fastled/FastLED @ 3.7.1
246
+
;; https://github.com/softhack007/FastLED.git#ESP32-C6 ;; patched version needed for -C6
242
247
IRremoteESP8266 @ 2.8.2
243
248
;;makuna/NeoPixelBus @ 2.7.5 ;; WLEDMM will be added in board specific sections
;; HUB75_lib_deps = https://github.com/mrcodetastic/ESP32-HUB75-MatrixPanel-DMA.git#1e4c80a26454aca7b8129bd5a966b0af329d2703 ;; 3.0.10 - something strange is going on here ...
1045
+
;; HUB75_lib_deps = https://github.com/mrcodetastic/ESP32-HUB75-MatrixPanel-DMA.git#1e4c80a26454aca7b8129bd5a966b0af329d2703 ;; 3.0.10 - something strange is going on here ...
-D ARDUINO_USB_CDC_ON_BOOT=0 ; needed for arduino-esp32 >=2.0.4; avoids errors on startup
1634
+
-D WLEDMM_FASTPATH ; WLEDMM experimental option. Reduces audio lag (latency), and allows for faster LED framerates. May break compatibility with previous versions.
-DARDUINO_USB_MODE=1 -DARDUINO_USB_CDC_ON_BOOT=0 -DARDUINO_USB_MSC_ON_BOOT=0 -DARDUINO_USB_DFU_ON_BOOT=0 ;; for Serial-to-USB chip
1872
+
;;-DARDUINO_USB_MODE=1 -DARDUINO_USB_CDC_ON_BOOT=1 -DARDUINO_USB_MSC_ON_BOOT=0 -DARDUINO_USB_DFU_ON_BOOT=1 ;; for Hardware-CDC USB mode
1873
+
-D WLED_DISABLE_ADALIGHT ;; disables serial protocols - recommended for Hardware-CDC USB (Serial RX will receive junk commands when RX pin is unconnected, unless its pulled down by resistor)
-D WLEDMM_FASTPATH ; WLEDMM experimental option. Reduces audio lag (latency), and allows for faster LED framerates. May break compatibility with previous versions.
; -DARDUINO_USB_CDC_ON_BOOT=1 ;; for virtual CDC USB
2304
+
-DARDUINO_USB_CDC_ON_BOOT=0 ;; for serial-to-USB chip
2305
+
-D WLED_RELEASE_NAME=esp32c3dev_2MB_M
2306
+
-D WLED_DISABLE_BROWNOUT_DET ;; the board only has a 500mA LDO, better to disable brownout detection
2307
+
-D WLED_DISABLE_ADALIGHT ;; to disable serial protocols for boards with CDC USB (Serial RX will receive junk commands, unless its pulled down by resistor)
; Serial debug enabled -DARDUINO_USB_MODE=1 -DARDUINO_USB_CDC_ON_BOOT=1 -DARDUINO_USB_MSC_ON_BOOT=0 -DARDUINO_USB_DFU_ON_BOOT=1 ;; for Hardware-CDC USB mode
2495
2632
-D ARDUINO_USB_CDC_ON_BOOT=0
2496
2633
-D WLED_DISABLE_ADALIGHT ;; disables serial protocols - recommended for Hardware-CDC USB (Serial RX will receive junk commands when RX pin is unconnected, unless its pulled down by resistor)
0 commit comments