forked from Aircoookie/WLED
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
90 changed files
with
13,996 additions
and
10,568 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ | |
# ------------------------------------------------------------------------------ | ||
|
||
# CI binaries | ||
;; default_envs = nodemcuv2, esp8266_2m, esp01_1m_full, esp32dev, esp32_eth # ESP32 variant builds are temporarily excluded from CI due to toolchain issues on the GitHub Actions Linux environment | ||
; default_envs = nodemcuv2, esp8266_2m, esp01_1m_full, esp32dev, esp32_eth # ESP32 variant builds are temporarily excluded from CI due to toolchain issues on the GitHub Actions Linux environment | ||
default_envs = nodemcuv2, esp8266_2m, esp01_1m_full, esp32dev, esp32_eth, lolin_s2_mini, esp32c3dev, esp32s3dev_8MB | ||
|
||
# Release binaries | ||
|
@@ -40,6 +40,8 @@ default_envs = nodemcuv2, esp8266_2m, esp01_1m_full, esp32dev, esp32_eth, lolin_ | |
; default_envs = esp32dev_qio80 | ||
; default_envs = esp32_eth_ota1mapp | ||
; default_envs = esp32s2_saola | ||
; default_envs = esp32c3dev | ||
; default_envs = lolin_s2_mini | ||
|
||
src_dir = ./wled00 | ||
data_dir = ./wled00/data | ||
|
@@ -60,13 +62,14 @@ arduino_core_2_7_4 = [email protected] | |
arduino_core_3_0_0 = [email protected] | ||
arduino_core_3_2_0 = [email protected] | ||
arduino_core_4_1_0 = [email protected] | ||
arduino_core_3_1_2 = [email protected] | ||
|
||
# Development platforms | ||
arduino_core_develop = https://github.com/platformio/platform-espressif8266#develop | ||
arduino_core_git = https://github.com/platformio/platform-espressif8266#feature/stage | ||
|
||
# Platform to use for ESP8266 | ||
platform_wled_default = ${common.arduino_core_4_1_0} | ||
platform_wled_default = ${common.arduino_core_3_1_2} | ||
# We use 2.7.4.7 for all, includes PWM flicker fix and Wstring optimization | ||
#platform_packages = tasmota/framework-arduinoespressif8266 @ 3.20704.7 | ||
platform_packages = platformio/framework-arduinoespressif8266 | ||
|
@@ -178,14 +181,12 @@ lib_deps = | |
https://github.com/Aircoookie/ESPAsyncWebServer.git @ ~2.0.7 | ||
#For use of the TTGO T-Display ESP32 Module with integrated TFT display uncomment the following line | ||
#TFT_eSPI | ||
#For use SSD1306 OLED display uncomment following | ||
#U8g2@~2.28.8 | ||
#U8g2@~2.32.10 | ||
#For Dallas sensor uncomment following 2 lines | ||
#OneWire@~2.3.5 | ||
#milesburton/DallasTemperature@^3.9.0 | ||
#For compatible OLED display uncomment following | ||
#U8g2 #@ ~2.33.15 | ||
#For Dallas sensor uncomment following | ||
#OneWire @ ~2.3.7 | ||
#For BME280 sensor uncomment following | ||
#BME280@~3.0.0 | ||
#BME280 @ ~3.0.0 | ||
; adafruit/Adafruit BMP280 Library @ 2.1.0 | ||
; adafruit/Adafruit CCS811 Library @ 1.0.4 | ||
; adafruit/Adafruit Si7021 Library @ 1.4.0 | ||
|
@@ -461,8 +462,8 @@ board = esp32-c3-devkitm-1 | |
board_build.partitions = tools/WLED_ESP32_4MB_1MB_FS.csv | ||
build_flags = ${common.build_flags} ${esp32c3.build_flags} #-D WLED_RELEASE_NAME=ESP32-C3 | ||
-D WLED_WATCHDOG_TIMEOUT=0 | ||
; -DARDUINO_USB_CDC_ON_BOOT=1 ;; for virtual CDC USB | ||
-DARDUINO_USB_CDC_ON_BOOT=0 ;; for serial-to-USB chip | ||
-DARDUINO_USB_CDC_ON_BOOT=1 ;; for virtual CDC USB | ||
;-DARDUINO_USB_CDC_ON_BOOT=0 ;; for serial-to-USB chip | ||
upload_speed = 460800 | ||
build_unflags = ${common.build_unflags} | ||
lib_deps = ${esp32c3.lib_deps} | ||
|
@@ -574,10 +575,10 @@ platform = ${esp32s2.platform} | |
platform_packages = ${esp32s2.platform_packages} | ||
board = lolin_s2_mini | ||
board_build.partitions = tools/WLED_ESP32_4MB_1MB_FS.csv | ||
build_unflags = ${common.build_unflags} -DARDUINO_USB_CDC_ON_BOOT=1 | ||
build_unflags = ${common.build_unflags} #-DARDUINO_USB_CDC_ON_BOOT=1 | ||
build_flags = ${common.build_flags} ${esp32s2.build_flags} #-D WLED_RELEASE_NAME=LolinS2 | ||
-DBOARD_HAS_PSRAM | ||
-DARDUINO_USB_CDC_ON_BOOT=0 | ||
-DARDUINO_USB_CDC_ON_BOOT=1 # try disabling and enabling unflag above in case of board-specific issues, will disable Serial | ||
-DARDUINO_USB_MSC_ON_BOOT=0 | ||
-DARDUINO_USB_DFU_ON_BOOT=0 | ||
-DLOLIN_WIFI_FIX ; seems to work much better with this | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.