35 lines
896 B
INI
35 lines
896 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]
|
|
platform = espressif32
|
|
board = esp32dev
|
|
framework = arduino
|
|
monitor_speed = 115200
|
|
build_unflags = -std=gnu++11
|
|
build_flags =
|
|
-std=gnu++17
|
|
-I include
|
|
lib_deps =
|
|
martinverges/ESP32 Wifi Manager@^1.5.0
|
|
esp32async/ESPAsyncWebServer@^3.7.10
|
|
bblanchon/ArduinoJson@^7.4.2
|
|
knolleary/PubSubClient@^2.8
|
|
arkhipenko/TaskScheduler@^3.8.5
|
|
|
|
[env:esp32dev-serial]
|
|
build_flags =
|
|
${env.build_flags}
|
|
-D ENABLE_SERIAL_DEBUG=1
|
|
|
|
[env:esp32dev-ota]
|
|
upload_protocol = espota
|
|
upload_port = smart-rgb.local
|