2020-07-19 13:11:10 +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
|
|
|
|
|
|
|
|
[env:esp-wrover-kit]
|
|
|
|
platform = espressif32
|
|
|
|
board = esp-wrover-kit
|
|
|
|
framework = arduino
|
|
|
|
|
|
|
|
build_flags =
|
2020-07-19 15:33:22 +00:00
|
|
|
-DHOSTNAME="\"${sysenv.HOSTNAME}\""
|
|
|
|
-DHTTP_POST_URL="\"${sysenv.HTTP_POST_URL}\""
|
2020-07-19 13:11:10 +00:00
|
|
|
-DWIFI_NAME="\"${sysenv.WIFI_NAME}\""
|
|
|
|
-DWIFI_PASS="\"${sysenv.WIFI_PASS}\""
|
|
|
|
|
|
|
|
lib_deps =
|
|
|
|
ArduinoJson
|
2020-07-19 15:33:22 +00:00
|
|
|
HTTPClient-SSL
|
2020-07-19 13:11:10 +00:00
|
|
|
Timer=https://github.com/brunocalou/Timer.git
|