aboutsummaryrefslogtreecommitdiff
path: root/examples/PIO_TestPatterns/platformio.ini
blob: c5a2b09a7808c243984cd8d26684563ce76bfac8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[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


[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