51 lines
1.2 KiB
INI
51 lines
1.2 KiB
INI
; 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
|
|
|
|
[platformio]
|
|
default_envs = esp32
|
|
src_dir = .
|
|
|
|
[common]
|
|
lib_deps_builtin =
|
|
WiFi
|
|
TFT_eSPI
|
|
lib_deps =
|
|
adafruit/Adafruit Unified Sensor
|
|
knolleary/PubSubClient
|
|
robtillaart/RunningMedian
|
|
bodmer/Tjpg_decoder
|
|
; adafruit/Adafruit SCD30
|
|
; adafruit/Adafruit BusIO
|
|
; adafruit/Adafruit SGP30 Sensor
|
|
http://192.168.2.3/Bonobo.Git.Server/JCButton.git
|
|
sparkfun/SparkFun SCD30 Arduino Library@^1.0.13
|
|
sparkfun/SparkFun SGP30 Arduino Library@^1.0.5
|
|
|
|
[env:esp32]
|
|
platform = espressif32
|
|
board = esp-wrover-kit
|
|
framework = arduino
|
|
monitor_speed = 115200
|
|
lib_deps =
|
|
${common.lib_deps_builtin}
|
|
${common.lib_deps}
|
|
|
|
|
|
[env:esp32_ota]
|
|
platform = espressif32
|
|
board = esp-wrover-kit
|
|
framework = arduino
|
|
monitor_speed = 115200
|
|
lib_deps =
|
|
${common.lib_deps_builtin}
|
|
${common.lib_deps}
|
|
upload_protocol = espota
|
|
upload_port = 192.168.2.236
|