-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathplatformio.ini
63 lines (54 loc) · 1.67 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
; 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]
platform = espressif32
board = esp32dev
framework = arduino
lib_deps =
bblanchon/StreamUtils@^1.6.2
br3ttb/PID@^1.2.1
bblanchon/ArduinoJson@^7.2.1
adafruit/Adafruit MAX31855 library@^1.3.0
knolleary/PubSubClient@^2.8
arduino-libraries/Ethernet@^2.0.0
mathieucarbou/ESPAsyncWebServer @ ^3.3.17
https://github.com/Kolkman/ESPAsyncDNSServer.git
enjoyneering/LiquidCrystal_I2C@^1.2.4
olikraus/U8g2@^2.34.17
paulstoffregen/Time @ ^1.6.1
arduino-libraries/NTPClient@^3.2.1
jchristensen/Timezone@^1.2.4
[env:esp32dev-prod-silvia]
monitor_speed = 115200
upload_port = /dev/tty.usbserial-0001
build_type = release
build_flags =
!make
!echo '-D FIRMWAREVERSION=\\"'$(cat ./firmwareVersion)'\\" -D ONLY_BLACK_BUTTON -D HOSTNAME=\\"silvia\\"'
[env:esp32dev-prod-testESP]
monitor_speed = 115200
upload_port = /dev/tty.usbserial-0001
build_type = release
build_flags =
!make
!echo '-D FIRMWAREVERSION=\\"'$(cat ./firmwareVersion)'\\" -D HOSTNAME=\\"testESP\\" -D TESTUPDATE'
[env:esp32dev-prod-release]
monitor_speed = 115200
upload_port = /dev/tty.usbserial-0001
build_type = release
build_flags =
!make
!echo '-D FIRMWAREVERSION=\\"'$(cat ./firmwareVersion)'\\" -D HOSTNAME=\\"silvia\\"'
[env:esp32dev-debug]
monitor_speed = 115200
debug_speed = 1000
debug_tool = esp-prog
upload_protocol = esp-prog
build_type = debug