mirror of
https://gitlab.com/wirelos/sprocket-plugin-mqtt.git
synced 2025-12-14 21:52:21 +01:00
37 lines
888 B
INI
37 lines
888 B
INI
[platformio]
|
|
env_default = basic, chat
|
|
|
|
[common]
|
|
framework = arduino
|
|
platform = espressif8266
|
|
board = esp12e
|
|
upload_speed = 921600
|
|
monitor_baud = 115200
|
|
lib_deps =
|
|
Hash
|
|
TaskScheduler
|
|
SPIFFS
|
|
ArduinoJson
|
|
ArduinoOTA
|
|
https://gitlab.com/wirelos/sprocket-lib.git#develop
|
|
https://gitlab.com/wirelos/sprocket-network-wifi.git
|
|
|
|
[env:basic]
|
|
src_filter = +<*> -<examples/> +<examples/basic/>
|
|
platform = ${common.platform}
|
|
board = ${common.board}
|
|
upload_speed = ${common.upload_speed}
|
|
monitor_baud = ${common.monitor_baud}
|
|
framework = ${common.framework}
|
|
lib_deps = ${common.lib_deps}
|
|
PubSubClient
|
|
|
|
[env:chat]
|
|
src_filter = +<*> -<examples/> +<examples/chat/>
|
|
platform = ${common.platform}
|
|
board = ${common.board}
|
|
upload_speed = ${common.upload_speed}
|
|
monitor_baud = ${common.monitor_baud}
|
|
framework = ${common.framework}
|
|
lib_deps = ${common.lib_deps}
|
|
PubSubClient |