esp-matrix-server/platformio.ini

28 lines
791 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
[common]
env_default = nodemcuv2
upload_port = COM4
monitor_speed = 115200
lib_deps =
SPI
https://github.com/bartoszbielawski/LEDMatrixDriver
https://github.com/tzapu/WiFiManager
https://github.com/JoaoLopesF/RemoteDebug
[env:nodemcuv2]
platform = espressif8266
board = nodemcuv2
framework = arduino
monitor_speed = ${common.monitor_speed}
upload_port = ${common.upload_port}
lib_deps =
${common.lib_deps}