2022-01-03 12:03:07 +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
|
|
|
|
|
2022-01-08 16:31:37 +00:00
|
|
|
[platformio]
|
|
|
|
src_dir = ./src
|
|
|
|
data_dir = ../../data
|
|
|
|
|
|
|
|
[env]
|
|
|
|
lib_extra_dirs = ../../
|
|
|
|
board_build.filesystem = littlefs
|
|
|
|
; Additional scripts: Usage: see https://github.com/s00500/ESPUI/issues/144#issuecomment-1005135077
|
|
|
|
;extra_scripts =
|
|
|
|
; LittleFSBuilder.py
|
|
|
|
|
2022-01-03 12:03:07 +00:00
|
|
|
[env:esp8266]
|
|
|
|
platform = espressif8266
|
|
|
|
framework = arduino
|
2022-01-08 16:31:37 +00:00
|
|
|
board = nodemcuv2
|
|
|
|
lib_deps =
|
|
|
|
bblanchon/ArduinoJson @ ^6.18.5
|
|
|
|
me-no-dev/ESP Async WebServer @ ^1.2.3
|
2022-01-04 10:35:43 +00:00
|
|
|
|
|
|
|
[env:esp32]
|
|
|
|
platform = espressif32
|
|
|
|
framework = arduino
|
2022-01-08 16:31:37 +00:00
|
|
|
board = esp32dev
|
|
|
|
lib_deps =
|
|
|
|
lorol/LittleFS_esp32@^1.0.6
|
|
|
|
bblanchon/ArduinoJson @ ^6.18.5
|
|
|
|
me-no-dev/ESP Async WebServer @ ^1.2.3
|