-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathplatformio.ini
More file actions
59 lines (52 loc) · 1.22 KB
/
platformio.ini
File metadata and controls
59 lines (52 loc) · 1.22 KB
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
49
50
51
52
53
54
55
56
57
58
59
; 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]
default_envs = esp32c3, esp32, esp8266, seeed_xiao
name = LEDCell
description = LED Cell
[env]
framework = arduino
monitor_speed = 115200
upload_speed = 921600
lib_compat_mode = strict
lib_ldf_mode = chain
lib_deps =
fastled/FastLED@^3.10.2
build_flags =
-D CORE_DEBUG_LEVEL=4
-D ELEGANTOTA_USE_ASYNC_WEBSERVER=1
[env:esp8266]
platform = espressif8266
board = esp12e
lib_deps =
${env.lib_deps}
[env:esp32]
platform = espressif32
board = esp32doit-devkit-v1
lib_deps =
${env.lib_deps}
[env:esp32c3]
platform = espressif32
board = esp32-c3-devkitm-1
monitor_speed = 460800
monitor_rts = 0
monitor_dtr = 0
build_flags = ${env.build_flags}
-D ARDUINO_LOLIN_C3_MINI
-D ARDUINO_USB_MODE=1
-D ARDUINO_USB_CDC_ON_BOOT=1
lib_deps =
${env.lib_deps}
[env:seeed_xiao]
platform = atmelsam
board = seeed_xiao
framework = arduino
lib_deps =
${env.lib_deps}