forked from toblum/ESPTeamsPresence
-
Notifications
You must be signed in to change notification settings - Fork 0
/
platformio.ini
42 lines (39 loc) · 1007 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
40
41
42
; 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
[platformio]
src_dir = ./src/
default_envs = m5stack-core-esp32
description = The Microsoft Teams Neopixel Presence Device for ESP32
[env]
platform = espressif32
board = m5stick-c
framework = arduino
monitor_speed = 115200
upload_speed = 921600
build_flags =
-DDATAPIN=13
-DNUMLEDS=16
lib_deps =
[env:m5stack-core-esp32]
platform = espressif32
extends = esp32dev
board = m5stack-core-esp32
upload_speed = 115200
build_flags =
-DDATAPIN=26
-DNUMLEDS=37
lib_deps =
m5stack/M5StickC@^0.2.0
prampec/IotWebConf@^2.3.3
bblanchon/ArduinoJson@^6.17.2
kitesurfer1404/WS2812FX@^1.3.2