-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathplatformio.ini
89 lines (78 loc) · 2.57 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
; 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
[ota]
esp_auth = 00000000
esp_name = pagehandler-test
[platformio]
src_dir = examples/minimal
data_dir = examples/minimal/data
[env]
platform = espressif32
framework = arduino
upload_speed = 921600
monitor_speed = 115200
lib_extra_dirs = ${workspacedir}
build_flags =
-DESP_NAME=\"${ota.esp_name}\"
-DESP_AUTH=\"${ota.esp_auth}\"
lib_deps =
stevesch/stevesch-WiFiConnector
alanswx/ESPAsyncWiFiManager@^0.31
densaugeo/base64@^1.4.0
bblanchon/ArduinoJson@^6.17.3
; https://github.com/ul-gh/ESPAsyncWebServer.git#3b8c659cf83da49ed95a96a85024a69237ad9711
; https://github.com/esphome/AsyncTCP.git
; https://github.com/esphome/ESPAsyncWebServer.git
; https://github.com/ul-gh/AsyncTCP.git#ffa499e53175942f2d7c00e72c939524fda0053e
; https://github.com/esphome/AsyncTCP.git
https://github.com/mathieucarbou/AsyncTCP.git @ ^3.2.8
; https://github.com/pbolduc/AsyncTCP.git @ 1.2.0
; file://C:/Users/Steve/Documents/PlatformIO/Projects/external/stevesch/ESPAsyncWebServer
; https://github.com/esphome/ESPAsyncWebServer.git
https://github.com/mathieucarbou/ESPAsyncWebServer.git @ ^3.3.12
[env:esp32-dev-module]
board = esp32dev
[env:esp32-dev-module-OTA]
extends = env:esp32-dev-module
upload_speed = 1500000
upload_flags = --auth=${ota.esp_auth}
upload_port = ${ota.esp_name}.local
upload_protocol = espota
[env:esp32-pico-module]
board = pico32
upload_speed = 115200
[env:esp32-pico-module-OTA]
extends = env:esp32-pico-module
upload_speed = 1500000
upload_flags = --auth=${ota.esp_auth}
upload_port = ${ota.esp_name}.local
upload_protocol = espota
[env:esp32-wrover-module]
board = esp-wrover-kit
build_flags =
-DBOARD_HAS_PSRAM
-DCONFIG_SPIRAM_SUPPORT
-mfix-esp32-psram-cache-issue
[env:esp32-wrover-module-OTA]
extends = env:esp32-wrover-module
upload_speed = 1500000
upload_flags = --auth=${ota.esp_auth}
upload_port = ${ota.esp_name}.local
upload_protocol = espota
[env:esp32-m5stamp-module]
board = pico32
upload_speed = 1500000
[env:esp32-m5stamp-module-OTA]
extends = env:esp32-pico-module
upload_speed = 1500000
; upload_speed = 921600
upload_flags = --auth=${ota.esp_auth}
upload_port = ${ota.esp_name}.local
upload_protocol = espota