-
Notifications
You must be signed in to change notification settings - Fork 0
/
platformio.ini
32 lines (31 loc) · 876 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
; 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
[env:esp8266dev]
platform = espressif8266
board = nodemcuv2
framework = arduino
monitor_speed = 115200
upload_speed = 921600
build_flags =
-DLED_COUNT=32
-DLED_PIN=D4
-DPIN_BRIGHTNESS=D6
-DPIN_ANIMATION=D5
-DMAX_LEVELS=5
-DBUTTON_DEBOUNCE_DELAY=50
-DDEFAULT_STA_SSID=bobbycar
-DDEFAULT_STA_PASS=12345678
!echo "-DGIT_HASH='\"$(git rev-parse HEAD)\"'"
lib_deps =
fastled/FastLED@^3.5.0
me-no-dev/ESPAsyncTCP@^1.2.2
me-no-dev/ESP Async WebServer@^1.2.3
makuna/NeoPixelBus@^2.6.9
fmtlib/fmt@^8.1.1