0749fa4193
Also known as the @vortigont release! Hooray!
42 lines
926 B
INI
42 lines
926 B
INI
[platformio]
|
|
default_envs = esp32
|
|
|
|
[env]
|
|
framework = arduino
|
|
platform = espressif32
|
|
board_build.filesystem = littlefs
|
|
board = wemos_d1_mini32
|
|
lib_deps =
|
|
FastLED
|
|
build_flags =
|
|
; -DSERIAL_DEBUG=1
|
|
upload_speed = 921600
|
|
monitor_speed = 115200
|
|
monitor_filters = esp32_exception_decoder
|
|
|
|
[env:esp32]
|
|
build_flags =
|
|
${env.build_flags}
|
|
-DUSE_FASTLINES
|
|
-DNO_GFX
|
|
lib_deps =
|
|
${env.lib_deps}
|
|
; use dev version of the lib
|
|
https://github.com/mrfaptastic/ESP32-HUB75-MatrixPanel-I2S-DMA.git#dev
|
|
|
|
|
|
[env:idfarduino]
|
|
platform = espressif32
|
|
platform_packages =
|
|
; use a special branch
|
|
framework-arduinoespressif32 @ https://github.com/espressif/arduino-esp32.git#idf-release/v4.0
|
|
framework = arduino, espidf
|
|
build_flags =
|
|
${env.build_flags}
|
|
-DARDUINO=200
|
|
-DESP32
|
|
-DUSE_FASTLINES
|
|
-DNO_GFX
|
|
lib_deps =
|
|
${env.lib_deps}
|
|
https://github.com/mrfaptastic/ESP32-HUB75-MatrixPanel-I2S-DMA.git#dev
|