mirror of
https://github.com/Luzifer/espsms.git
synced 2024-11-09 23:40:01 +00:00
25 lines
725 B
INI
25 lines
725 B
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
|
|
|
|
[env:esp-wrover-kit]
|
|
platform = espressif32
|
|
board = esp-wrover-kit
|
|
framework = arduino
|
|
|
|
build_flags =
|
|
-DHOSTNAME="\"${sysenv.HOSTNAME}\""
|
|
-DHTTP_POST_URL="\"${sysenv.HTTP_POST_URL}\""
|
|
-DWIFI_NAME="\"${sysenv.WIFI_NAME}\""
|
|
-DWIFI_PASS="\"${sysenv.WIFI_PASS}\""
|
|
|
|
lib_deps =
|
|
ArduinoJson
|
|
HTTPClient-SSL
|
|
Timer=https://github.com/brunocalou/Timer.git
|