forked from ProjektionTV/ProjektionFX
-
Notifications
You must be signed in to change notification settings - Fork 0
/
platformio.ini
39 lines (33 loc) · 1023 Bytes
/
platformio.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
; 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
[scripts_defaults]
extra_scripts = post:pio-scripts/rename-releases.py
[env]
framework = arduino
monitor_speed = 115200
upload_speed = 256000
extra_scripts = ${scripts_defaults.extra_scripts}
lib_deps =
fastled/FastLED@^3.5.0
knolleary/PubSubClient@^2.8
bblanchon/ArduinoJson@^6.19.4
https://github.com/tzapu/WiFiManager.git#v2.0.11-beta
[env:nodemcuv2]
platform = espressif8266 @ 3.2.0
board = nodemcuv2
build_flags = -D RELEASE_NAME=ESP8266
[env:d1_mini]
board = d1_mini
platform = espressif8266 @ 3.2.0
build_flags = -D RELEASE_NAME=ESP8266
[env:esp32thing]
board = esp32thing
platform = espressif32 @ 4.2.0
build_flags = -D RELEASE_NAME=ESP32