Updated platformio.ini for v0.8.2

This commit is contained in:
cschwinne 2018-12-06 16:31:52 +01:00
parent eb53c52499
commit d3fc0309c0

View File

@ -5,8 +5,8 @@
src_dir = ./wled00 src_dir = ./wled00
data_dir = ./wled00/data data_dir = ./wled00/data
lib_extra_dirs = ./wled00/src lib_extra_dirs = ./wled00/src
; env_default = nodemcuv2 env_default = nodemcuv2
env_default = esp01 ; env_default = esp01
; env_default = esp01_1m ; env_default = esp01_1m
; env_default = d1_mini ; env_default = d1_mini
; env_default = esp32dev ; env_default = esp32dev
@ -18,10 +18,10 @@ monitor_speed = 115200
board_build.flash_mode = dout board_build.flash_mode = dout
upload_speed = 921600 upload_speed = 921600
build_flags = build_flags =
; -D VERSION=0.8.2-dev ; -D VERSION=0.8.2
; -D DEBUG ; -D DEBUG
# TODO replace libs in /lib with managed libs in here if possible. # TODO replace libs in /lib with managed libs in here if possible.
# If they are not changed it's just a metter of setting the correfct version and change the import statement # If they are not changed it's just a matter of setting the correct version and change the import statement
lib_deps_external = lib_deps_external =
#Blynk@0.5.4 #Blynk@0.5.4
#E131@1.0.0 #E131@1.0.0
@ -48,6 +48,7 @@ build_flags =
; -D WLED_DISABLE_BLYNK ; -D WLED_DISABLE_BLYNK
; -D WLED_DISABLE_CRONIXIE ; -D WLED_DISABLE_CRONIXIE
-D WLED_DISABLE_HUESYNC -D WLED_DISABLE_HUESYNC
-D WLED_DISABLE_INFRARED
[common:esp32] [common:esp32]
platform = espressif32@1.5.0 platform = espressif32@1.5.0
@ -69,6 +70,7 @@ build_flags =
${common:esp8266.build_flags} ${common:esp8266.build_flags}
lib_deps = lib_deps =
${common.lib_deps_external} ${common.lib_deps_external}
IRremoteESP8266@2.5.3
[env:d1_mini] [env:d1_mini]
board = d1_mini board = d1_mini
@ -81,6 +83,7 @@ build_flags =
${common:esp8266.build_flags} ${common:esp8266.build_flags}
lib_deps = lib_deps =
${common.lib_deps_external} ${common.lib_deps_external}
IRremoteESP8266@2.5.3
[env:esp01_1m] [env:esp01_1m]
board = esp01_1m board = esp01_1m
@ -91,6 +94,8 @@ framework = ${common.framework}
build_flags = build_flags =
${common.build_flags} ${common.build_flags}
${common:esp8266.build_flags} ${common:esp8266.build_flags}
# disable IR because there is no pin for it
-D WLED_DISABLE_INFRARED
lib_deps = lib_deps =
${common.lib_deps_external} ${common.lib_deps_external}