2021-02-10 16:49:19 +01:00
|
|
|
[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}
|
2021-02-16 21:03:56 +01:00
|
|
|
;-DUSE_FASTLINES
|
2021-02-10 16:49:19 +01:00
|
|
|
-DNO_GFX
|
|
|
|
lib_deps =
|
|
|
|
${env.lib_deps}
|
|
|
|
; use dev version of the lib
|
2021-02-16 21:03:56 +01:00
|
|
|
https://github.com/mrfaptastic/ESP32-HUB75-MatrixPanel-I2S-DMA.git
|
2021-02-10 16:49:19 +01:00
|
|
|
|
|
|
|
|
|
|
|
[env:idfarduino]
|
|
|
|
platform = espressif32
|
|
|
|
platform_packages =
|
|
|
|
; use a special branch
|
2021-02-16 21:03:56 +01:00
|
|
|
framework-arduinoespressif32 @ https://github.com/espressif/arduino-esp32.git#idf-release/v4.0
|
2021-02-10 16:49:19 +01:00
|
|
|
framework = arduino, espidf
|
|
|
|
build_flags =
|
|
|
|
${env.build_flags}
|
|
|
|
-DARDUINO=200
|
|
|
|
-DESP32
|
2021-02-16 21:03:56 +01:00
|
|
|
;-DUSE_FASTLINES
|
2021-02-10 16:49:19 +01:00
|
|
|
-DNO_GFX
|
|
|
|
lib_deps =
|
|
|
|
${env.lib_deps}
|
2021-02-16 21:03:56 +01:00
|
|
|
https://github.com/mrfaptastic/ESP32-HUB75-MatrixPanel-I2S-DMA.git
|