-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathplatformio.ini
More file actions
52 lines (47 loc) · 1.55 KB
/
Copy pathplatformio.ini
File metadata and controls
52 lines (47 loc) · 1.55 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
; 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 = firmware/src
include_dir = firmware/include
lib_dir = firmware/lib
test_dir = firmware/test
; [env:esp32-c3-devkitm-1]
; platform = espressif32
; board = esp32-c3-devkitm-1
[env:esp32-s3-devkitc-1]
platform = espressif32
board = esp32-s3-devkitc-1
framework = arduino
monitor_speed = 115200
monitor_filters = esp32_exception_decoder
; Build flags for optimization and debugging
build_flags =
-DCORE_DEBUG_LEVEL=3
-DCONFIG_ARDUHAL_LOG_COLORS=1
-Wall
-Wextra
-Os
; board_build.partitions = no_ota.csv
; Dependencies
lib_deps =
; ArduinoJson for configuration and data handling
bblanchon/ArduinoJson@^6.21.3
; Preferences library is built-in for ESP32
; FastLED for WS2812 status LED control
fastled/FastLED@^3.6.0
; PubSubClient for MQTT communication
knolleary/PubSubClient@^2.8
; Adafruit SHT31 for temperature and humidity sensor
adafruit/Adafruit SHT31 Library@^2.2.2
; SDI-12 Library for TEROS12 and other SDI-12 sensors
https://github.com/EnviroDIY/Arduino-SDI-12.git#v2.1.4
; OneWire and DallasTemperature for DS18B20 temperature sensor
paulstoffregen/OneWire@^2.3.7
milesburton/DallasTemperature@^3.9.0