mirror of
https://github.com/IoTManagerProject/IoTManager.git
synced 2026-03-26 14:12:16 +03:00
81 lines
2.5 KiB
INI
81 lines
2.5 KiB
INI
|
|
[platformio]
|
|
default_envs = esp8266
|
|
build_cache_dir = .cache
|
|
|
|
;=============================================================================================================================================
|
|
[common_env_data]
|
|
lib_ldf_mode = chain+
|
|
lib_deps_external =
|
|
bblanchon/ArduinoJson @5.*
|
|
thomasfredericks/Bounce2
|
|
knolleary/PubSubClient
|
|
beegee-tokyo/DHT sensor library for ESPx
|
|
adafruit/Adafruit BMP280 Library
|
|
adafruit/Adafruit BME280 Library
|
|
milesburton/DallasTemperature
|
|
lib_deps_internal =
|
|
ESP Async WebServer
|
|
GyverFilters
|
|
OneWire
|
|
;=============================================================================================================================================
|
|
[env:esp32]
|
|
framework = arduino
|
|
board = esp32dev
|
|
platform = https://github.com/platformio/platform-espressif32.git
|
|
lib_deps =
|
|
${common_env_data.lib_deps_external}
|
|
${common_env_data.lib_deps_internal}
|
|
AsyncTCP
|
|
madhephaestus/ESP32Servo
|
|
luc-github/ESP32SSDP
|
|
CTBot
|
|
monitor_filters = esp32_exception_decoder
|
|
upload_speed = 921600
|
|
monitor_speed = 115200
|
|
board_build.filesystem = littlefs
|
|
extra_scripts =
|
|
tools/littlefsbuilder.py
|
|
${scripts_defaults.extra_scripts}
|
|
;=============================================================================================================================================
|
|
[env:esp8266_01_1m]
|
|
framework = arduino
|
|
board = esp01_1m
|
|
board_build.ldscript = eagle.flash.1m512.ld
|
|
platform = https://github.com/platformio/platform-espressif8266.git
|
|
lib_deps =
|
|
${common_env_data.lib_deps_external}
|
|
${common_env_data.lib_deps_internal}
|
|
ESPAsyncTCP
|
|
ESPAsyncUDP
|
|
EspSoftwareSerial
|
|
CTBot
|
|
monitor_filters = esp8266_exception_decoder
|
|
upload_speed = 921600
|
|
monitor_speed = 115200
|
|
board_build.filesystem = littlefs
|
|
;=============================================================================================================================================
|
|
[env:esp8266]
|
|
framework = arduino
|
|
board = nodemcuv2
|
|
platform = https://github.com/platformio/platform-espressif8266.git
|
|
lib_deps =
|
|
${common_env_data.lib_deps_external}
|
|
${common_env_data.lib_deps_internal}
|
|
ESPAsyncTCP
|
|
ESPAsyncUDP
|
|
EspSoftwareSerial
|
|
CTBot
|
|
monitor_filters = esp8266_exception_decoder
|
|
upload_speed = 921600
|
|
monitor_speed = 115200
|
|
board_build.filesystem = littlefs
|
|
extra_scripts =
|
|
${scripts_defaults.extra_scripts}
|
|
;=============================================================================================================================================
|
|
|
|
[scripts_defaults]
|
|
extra_scripts =
|
|
tools/name-firmware.py
|
|
tools/gzip-firmware.py
|