renderbug/platformio.ini

45 lines
1.2 KiB
INI
Raw Normal View History

2021-03-29 08:10:55 +00:00
; PlatformIO Project Configuration File
;
; Build options: build flags, source filter
; Upload options: custom upload port, speed and extra flags
; Library options: dependencies, extra library storages
; Advanced options: extra scripting
;
; Please visit documentation for the other options and examples
; https://docs.platformio.org/page/projectconf.html
[common_env_data]
src_filter = "+<*> -<.git/> -<.svn/> -<platform/>"
2021-03-29 08:10:55 +00:00
[env:featheresp32]
platform = espressif32
board = featheresp32
framework = arduino
build_flags =
-D PLATFORM_ARDUINO
-D BOARD_ESP32
lib_deps =
fastled/FastLED@^3.4.0
thijse/ArduinoLog@^1.0.3
knolleary/PubSubClient@^2.8.0
bblanchon/ArduinoJson@^6.17.3
sstaub/NTP@^1.4.0
arduino-libraries/NTPClient@^3.1.0
src_filter = "${common_env_data.src_filter} +<platform/arduino/>"
[env:huzzah]
platform = espressif8266
board = huzzah
framework = arduino
build_flags =
-D PLATFORM_ARDUINO
-D BOARD_ESP8266
2021-03-29 08:10:55 +00:00
lib_deps =
fastled/FastLED@^3.4.0
thijse/ArduinoLog@^1.0.3
knolleary/PubSubClient@^2.8.0
bblanchon/ArduinoJson@^6.17.3
sstaub/NTP@^1.4.0
arduino-libraries/NTPClient@^3.1.0
src_filter = "${common_env_data.src_filter} +<platform/arduino/>"