-
Notifications
You must be signed in to change notification settings - Fork 5
/
platformio.ini
95 lines (79 loc) · 2.32 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
; 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 = esp32
extra_configs = extra.ini
[env]
platform = espressif32@5.3.0
board_build.filesystem = littlefs
framework = arduino
lib_ldf_mode = chain+
lib_ignore =
LittleFS_esp32
lib_deps =
LittleFS@2.0.0
adafruit/Adafruit SCD30@^1.0.11
ottowinter/ESPAsyncWebServer-esphome@^3.1.0
jnthas/Improv WiFi Library@0.0.1
me-no-dev/AsyncTCP@^1.1.1
chrisjoyce911/esp32FOTA@0.2.7
knolleary/PubSubClient@^2.8
adafruit/Adafruit BusIO@^1.16.0
sensirion/Sensirion Core@^0.6.0
sensirion/Sensirion I2C SCD4x@^0.3.1
paulvha/sps30@1.4.17
adafruit/Adafruit SSD1306@^2.5.9
adafruit/Adafruit NeoPixel@^1.12.0
adafruit/Adafruit NeoMatrix@^1.3.2
bblanchon/ArduinoJson@^6.21.5
boschsensortec/BSEC Software Library@1.6.1480
adafruit/Adafruit DotStar@^1.2.5
adafruit/Adafruit DotStarMatrix@^1.0.8
mrfaptastic/ESP32 HUB75 LED MATRIX PANEL DMA Display@^3.0.9
upload_protocol = esptool
monitor_speed = 115200
monitor_filters = direct, esp32_exception_decoder, time
build_src_flags = !python git-rev.py
build_flags =
'-DSSD1306_NO_SPLASH=1'
extra_scripts =
pio_env.py
upload_no_build.py
post:post_build.py
[env:esp32]
board = esp32doit-devkit-v1
board_build.partitions = partitions-esp32.csv
lib_deps =
${env.lib_deps}
[env:esp32-s3]
board = esp32-s3-1-4
board_build.partitions = partitions-esp32-s3.csv
platform_packages = tool-esptoolpy @ https://github.com/tasmota/esptool/releases/download/v4.3/esptool-4.3.zip
lib_deps =
${env.lib_deps}
build_flags =
${env.build_flags}
-L".pio/libdeps/esp32-s3/BSEC Software Library/src/esp32"
[debug]
build_type = debug
; 0=None, 1=Error, 2=Warn, 3=Info, 4=Debug, 5=Verbose
build_flags =
${env.build_flags}
'-DCORE_DEBUG_LEVEL=4'
'-DLOG_LOCAL_LEVEL=4'
'-DSHOW_DEBUG_MSGS=1'
'-DSSD1306_NO_SPLASH=1'
[env:esp32-debug]
extends = env:esp32, debug
[env:esp32-s3-debug]
extends = env:esp32-s3, debug
build_flags =
${debug.build_flags}
-L".pio/libdeps/esp32-s3-debug/BSEC Software Library/src/esp32"