1
0
mirror of https://github.com/esphome/esphome.git synced 2025-10-29 22:24:26 +00:00

Disable platformio LDF (#352)

* Disable platformio LDF

* Use required build flags
This commit is contained in:
Otto Winter
2019-01-19 22:14:46 +01:00
committed by GitHub
parent eb39add6fc
commit 3437e23c8e
5 changed files with 30 additions and 4 deletions

View File

@@ -102,7 +102,7 @@ def to_code(config):
setup_component(fast_led, config)
BUILD_FLAGS = '-DUSE_FAST_LED_LIGHT'
REQUIRED_BUILD_FLAGS = '-DUSE_FAST_LED_LIGHT'
LIB_DEPS = 'FastLED@3.2.0'

View File

@@ -82,7 +82,7 @@ def to_code(config):
setup_component(fast_led, config)
BUILD_FLAGS = '-DUSE_FAST_LED_LIGHT'
REQUIRED_BUILD_FLAGS = '-DUSE_FAST_LED_LIGHT'
LIB_DEPS = 'FastLED@3.2.0'

View File

@@ -160,7 +160,7 @@ def to_code(config):
setup_component(output, config)
BUILD_FLAGS = '-DUSE_NEO_PIXEL_BUS_LIGHT'
REQUIRED_BUILD_FLAGS = '-DUSE_NEO_PIXEL_BUS_LIGHT'
LIB_DEPS = 'NeoPixelBus@2.4.1'