mirror of
https://gitlab.com/zwirbel/illucat.git
synced 2025-12-14 17:35:22 +01:00
40 lines
1014 B
INI
40 lines
1014 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
|
|
; http://docs.platformio.org/page/projectconf.html
|
|
|
|
[platformio]
|
|
env_default = build
|
|
|
|
[common]
|
|
framework = arduino
|
|
platform = espressif8266
|
|
board = esp12e
|
|
upload_speed = 921600
|
|
monitor_baud = 115200
|
|
lib_deps =
|
|
Hash
|
|
ESPAsyncTCP
|
|
TaskScheduler
|
|
SPIFFS
|
|
|
|
[env:build]
|
|
platform = ${common.platform}
|
|
board = ${common.board}
|
|
upload_speed = ${common.upload_speed}
|
|
monitor_baud = ${common.monitor_baud}
|
|
framework = ${common.framework}
|
|
;lib_extra_dirs = ~/src/illucat/.piolibdeps/sprocket-core/lib
|
|
lib_deps = ${common.lib_deps}
|
|
painlessMesh
|
|
ESP8266mDNS
|
|
ArduinoOTA
|
|
ESP Async WebServer
|
|
ESPAsyncTCP
|
|
Adafruit NeoPixel
|
|
https://gitlab.com/wirelos/sprocket-core.git#develop |