-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplatformio.ini
77 lines (69 loc) · 1.92 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
;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 = d1_mini_lite_ota
default_envs = d1_mini_lite_test
;default_envs = az-delivery-devkit-v4
;default_envs = az-delivery-devkit-v4-debug
;default_envs = az-delivery-devkit-v4-espprog
[common_env_data]
esp8266_libs =
ArduinoLog
jsmn
DNSServer
WiFiManager
PubSubClient
esp32_libs =
ArduinoLog
jsmn
https://github.com/zhouhan0126/DNSServer---esp32
https://github.com/zhouhan0126/WIFIMANAGER-ESP32
PubSubClient
https://github.com/zhouhan0126/WebServer-esp32
[env:d1_mini_lite_ota]
platform = espressif8266
board = d1_mini_lite
framework = arduino
lib_deps = ${common_env_data.esp8266_libs}
monitor_speed=115200
upload_protocol = espota
upload_port = 192.168.0.102
;upload_port = 192.168.0.179
;upload_port = 192.168.0.58
[env:d1_mini_lite_test]
platform = espressif8266
board = d1_mini_lite
framework = arduino
lib_deps = ${common_env_data.esp8266_libs}
monitor_speed=115200
build_flags=-D TESTMODE
[env:az-delivery-devkit-v4-debug]
platform = espressif32
board = az-delivery-devkit-v4
framework = arduino
lib_deps = ${common_env_data.esp32_libs}
monitor_speed=115200
build_type = debug
upload_protocol = esp-prog
debug_tool = esp-prog
debug_init_break = tbreak setup
[env:az-delivery-devkit-v4-espprog]
platform = espressif32
board = az-delivery-devkit-v4
framework = arduino
lib_deps = ${common_env_data.esp32_libs}
monitor_speed=115200
upload_protocol = esp-prog
[env:az-delivery-devkit-v4]
platform = espressif32
board = az-delivery-devkit-v4
framework = arduino
lib_deps = ${common_env_data.esp32_libs}
monitor_speed=115200