-
Notifications
You must be signed in to change notification settings - Fork 0
/
platformio.ini
54 lines (51 loc) · 1.23 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
; 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 = wemos_d1_mini32_ota
[env:wemos_d1_mini32]
platform = espressif32
board = wemos_d1_mini32
framework = arduino
monitor_speed = 115200
monitor_flags =
--parity
N
--encoding
utf-8
upload_port = COM4
debug_tool = esp-prog
debug_init_break = tbreak setup
lib_deps =
rweather/Crypto@^0.2.0
knolleary/PubSubClient@^2.8
jandrassy/TelnetStream@^1.2.4
build_flags = -fexceptions
[env:wemos_d1_mini32_ota]
platform = espressif32
board = wemos_d1_mini32
framework = arduino
monitor_port = socket://10.0.0.121:23
monitor_speed = 115200
monitor_flags =
--parity
N
--encoding
utf-8
monitor_filters = log2file, default
upload_protocol = espota
upload_port = 10.0.0.121
upload_flags = -P 11111
debug_tool = esp-prog
debug_init_break = tbreak setup
build_flags = -fexceptions
lib_deps =
rweather/Crypto@^0.2.0
knolleary/PubSubClient@^2.8
jandrassy/TelnetStream@^1.2.4