-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplatformio.ini
More file actions
45 lines (39 loc) · 1.2 KB
/
platformio.ini
File metadata and controls
45 lines (39 loc) · 1.2 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
; 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
[env:esp32doit-devkit-v1]
platform = espressif32
board = esp32doit-devkit-v1
framework = arduino
monitor_speed = 115200
monitor_filters =
esp32_exception_decoder
time
lib_deps =
bodmer/TFT_eSPI @^2.5.43
wollewald/ADS1220_WE @ 1.0.15
adafruit/Adafruit MAX31856 library @ ^1.2.2
br3ttb/PID @ 1.2.1
tobiasschuerg/ESP8266 Influxdb @ 3.13.1
me-no-dev/AsyncTCP @ 1.1.1
me-no-dev/ESPAsyncWebServer @ 1.2.4
bblanchon/ArduinoJson@6.21.4
build_flags =
-I./src
-std=gnu++17
-DCORE_DEBUG_LEVEL=3
'-DOTA_VERSION="local_development"'
; TFT_eSPI library settings:
; ######################################################
-D USER_SETUP_LOADED=1
-include $PROJECT_LIBDEPS_DIR/$PIOENV/TFT_eSPI/User_Setups/Setup42_ILI9341_ESP32.h
-D DISABLE_ALL_LIBRARY_WARNINGS=1
;#######################################################
build_unflags =
-std=gnu++11