WLED/platformio.ini

125 wiersze
3.1 KiB
INI
Czysty Zwykły widok Historia

; PlatformIO Project Configuration File
2018-11-13 23:05:06 +00:00
; Please visit documentation: https://docs.platformio.org/page/projectconf.html
[platformio]
2018-11-13 23:05:06 +00:00
src_dir = ./wled00
data_dir = ./wled00/data
lib_extra_dirs = ./wled00/src
2018-12-06 15:31:52 +00:00
env_default = nodemcuv2
; env_default = esp01
2018-11-13 23:05:06 +00:00
; env_default = esp01_1m
; env_default = d1_mini
; env_default = esp32dev
2018-11-13 23:05:06 +00:00
[common]
framework = arduino
monitor_speed = 115200
board_build.flash_mode = dout
upload_speed = 921600
2018-11-14 19:21:36 +00:00
build_flags =
2019-02-22 21:53:39 +00:00
; -D VERSION=0.8.4
2018-11-14 19:21:36 +00:00
; -D DEBUG
2018-11-13 23:05:06 +00:00
# TODO replace libs in /lib with managed libs in here if possible.
2018-12-06 15:31:52 +00:00
# If they are not changed it's just a matter of setting the correct version and change the import statement
2018-11-13 23:05:06 +00:00
lib_deps_external =
2019-02-22 21:53:39 +00:00
#Blynk@0.5.4(changed)
#E131@1.0.0(changed)
FastLED@3.2.6
2019-03-05 09:59:15 +00:00
NeoPixelBus@2.4.3
2019-02-22 21:53:39 +00:00
ESPAsyncTCP@1.2.0
AsyncTCP@1.0.3
EspAsyncWebServer@1.2.0
#ArduinoJson@5.13.5
2019-02-22 21:53:39 +00:00
IRremoteESP8266@2.5.5
2018-11-13 23:05:06 +00:00
#Time@1.5
#Timezone@1.2.1
2018-11-14 19:21:36 +00:00
[common:esp8266]
platform = espressif8266@1.8.0
2018-11-13 23:05:06 +00:00
build_flags =
2019-02-22 21:53:39 +00:00
-D PIO_FRAMEWORK_ARDUINO_LWIP_HIGHER_BANDWIDTH
2018-11-14 19:21:36 +00:00
[common:esp8266_512k]
platform = espressif8266@1.7.0
build_flags =
-D PIO_FRAMEWORK_ARDUINO_LWIP2_HIGHER_BANDWIDTH_LOW_FLASH
; -D WLED_DISABLE_MOBILE_UI
2018-11-14 19:21:36 +00:00
-D WLED_DISABLE_OTA
2019-02-22 21:53:39 +00:00
; -D WLED_DISABLE_ALEXA
-D WLED_DISABLE_BLYNK
-D WLED_DISABLE_CRONIXIE
-D WLED_DISABLE_HUESYNC
2018-12-06 15:31:52 +00:00
-D WLED_DISABLE_INFRARED
2018-11-13 23:05:06 +00:00
2018-11-14 19:21:36 +00:00
[common:esp32]
platform = espressif32@1.5.0
2018-11-13 23:05:06 +00:00
build_flags =
2018-11-14 19:21:36 +00:00
-D PIO_FRAMEWORK_ARDUINO_LWIP2_HIGHER_BANDWIDTH
-D ARDUINO_ARCH_ESP32
2019-02-22 21:53:39 +00:00
-D WLED_DISABLE_INFRARED
# see: http://docs.platformio.org/en/latest/platforms/espressif8266.html
[env:nodemcuv2]
board = nodemcuv2
2018-11-14 19:21:36 +00:00
platform = ${common:esp8266.platform}
2018-11-13 23:05:06 +00:00
monitor_speed = ${common.monitor_speed}
upload_speed = ${common.upload_speed}
framework = ${common.framework}
build_flags =
2018-11-13 23:05:06 +00:00
${common.build_flags}
2018-11-14 19:21:36 +00:00
${common:esp8266.build_flags}
lib_deps =
2018-11-13 23:05:06 +00:00
${common.lib_deps_external}
[env:d1_mini]
board = d1_mini
2018-11-14 19:21:36 +00:00
platform = ${common:esp8266.platform}
2018-11-13 23:05:06 +00:00
monitor_speed = ${common.monitor_speed}
upload_speed = ${common.upload_speed}
framework = ${common.framework}
build_flags =
2018-11-13 23:05:06 +00:00
${common.build_flags}
2018-11-14 19:21:36 +00:00
${common:esp8266.build_flags}
lib_deps =
2018-11-13 23:05:06 +00:00
${common.lib_deps_external}
[env:esp01_1m]
board = esp01_1m
2018-11-14 19:21:36 +00:00
platform = ${common:esp8266.platform}
2018-11-13 23:05:06 +00:00
monitor_speed = ${common.monitor_speed}
upload_speed = ${common.upload_speed}
framework = ${common.framework}
build_flags =
2018-11-13 23:05:06 +00:00
${common.build_flags}
2018-11-14 19:21:36 +00:00
${common:esp8266.build_flags}
2018-12-06 15:31:52 +00:00
# disable IR because there is no pin for it
-D WLED_DISABLE_INFRARED
lib_deps =
2018-11-13 23:05:06 +00:00
${common.lib_deps_external}
[env:esp01]
board = esp01
2018-11-14 19:21:36 +00:00
platform = ${common:esp8266_512k.platform}
2018-11-13 23:05:06 +00:00
monitor_speed = ${common.monitor_speed}
upload_speed = ${common.upload_speed}
framework = ${common.framework}
build_flags =
2018-11-13 23:05:06 +00:00
${common.build_flags}
2018-11-14 19:21:36 +00:00
${common:esp8266_512k.build_flags}
lib_deps =
2018-11-13 23:05:06 +00:00
${common.lib_deps_external}
# see: http://docs.platformio.org/en/latest/platforms/espressif32.html
[env:esp32dev]
board = esp32dev
2018-11-14 19:21:36 +00:00
platform = ${common:esp32.platform}
2018-11-13 23:05:06 +00:00
monitor_speed = ${common.monitor_speed}
upload_speed = ${common.upload_speed}
framework = ${common.framework}
build_flags =
2018-11-13 23:05:06 +00:00
${common.build_flags}
${common:esp32.build_flags}
lib_deps =
2018-11-13 23:05:06 +00:00
${common.lib_deps_external}