pitrix/platformio.ini

41 lines
1.0 KiB
INI
Raw Normal View History

2019-05-27 19:17:05 +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
2019-05-28 19:19:35 +00:00
[platformio]
lib_dir = lib
2020-04-29 18:27:34 +00:00
default_envs = ota
2019-06-04 04:00:14 +00:00
[extra]
lib_deps =
PubSubClient
https://github.com/fabianonline/FastLED.git
https://github.com/me-no-dev/ESPAsyncWebServer.git
2019-06-04 04:00:14 +00:00
[env:ota]
2020-04-28 15:44:59 +00:00
upload_port = 10.10.2.78 ; .78=prod, .80=dev
2019-06-04 04:00:14 +00:00
upload_protocol = espota
2019-05-27 19:17:05 +00:00
platform = espressif8266
board = esp07
framework = arduino
2019-06-04 04:00:14 +00:00
lib_deps = ${extra.lib_deps}
lib_ldf_mode = deep
build_flags = -Wl,-Teagle.flash.2m512.ld
[env:local]
2020-04-29 18:27:34 +00:00
upload_port = /dev/serial/by-id/usb-1a86_USB2.0-Serial-if00-port0
platform = espressif8266
board = esp07
framework = arduino
2019-06-04 04:00:14 +00:00
lib_deps = ${extra.lib_deps}
lib_ldf_mode = deep
build_flags = -Wl,-Teagle.flash.2m512.ld
2020-04-29 18:27:34 +00:00
monitor_filters = time, esp8266_exception_decoder
build_type = debug