forked from toblum/ESPTeamsPresence
-
Notifications
You must be signed in to change notification settings - Fork 0
/
platformio.ini
48 lines (43 loc) · 1.07 KB
/
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
43
44
45
46
47
48
;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 = esp32doit-devkit-v1
description = The Microsoft Teams Neopixel Presence Device for ESP32
[env]
platform=espressif32
board=esp32dev
framework=arduino
; upload_port=COM4
monitor_speed=115200
upload_speed=921600
build_flags=
-DDATAPIN=13
-DNUMLEDS=16
; -DCORE_DEBUG_LEVEL=5
lib_deps=
[env:esp32doit-devkit-v1]
board=esp32doit-devkit-v1
[env:esp32doit-devkit-v1-nocertcheck]
board=esp32doit-devkit-v1
build_flags=
${env.build_flags}
-DDISABLECERTCHECK
[env:m5stack-core-esp32]
platform=espressif32
extends=esp32dev
board=m5stack-core-esp32
upload_speed=115200
build_flags=
-DDATAPIN=26
-DNUMLEDS=37