forked from OpenInverterGateway/OpenInverterGateway
-
Notifications
You must be signed in to change notification settings - Fork 0
/
platformio.ini
89 lines (82 loc) · 2.14 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
[platformio]
default_envs = ShineWifiX, ShineWifiS, nodemcu-32s, lolin32, d1
src_dir = SRC/ShineWiFi-ModBus
[env]
monitor_speed = 115200
upload_speed = 921600
build_flags =
"-Wno-comment"
lib_deps =
ArduinoOTA
knolleary/PubSubClient@^2.8
https://github.com/tzapu/WiFiManager#v2.0.16-rc.2
https://github.com/khoih-prog/ESP_DoubleResetDetector#bce10ef01f3d4864a07ef31fdec2ad65adb3e5b8
https://github.com/bblanchon/ArduinoJson#67b6797b6d19e944b01213926872f955f4b9d54d
https://github.com/dirkx/tee-log.git
4-20ma/ModbusMaster@^2.0.1
https://github.com/bblanchon/ArduinoStreamUtils#v1.7.3
[env:ShineWifiX]
platform = espressif8266
board = esp07s
framework = arduino
lib_ldf_mode = deep+
lib_deps =
${env.lib_deps}
vshymanskyy/[email protected]
bluemurder/ESP8266-ping@^2.0.1
build_flags =
${env.build_flags}
"-D ENABLE_AP_BUTTON=1"
[env:ShineWifiS]
platform = espressif8266
board = esp12e
framework = arduino
lib_ldf_mode = deep+
lib_deps =
${env.lib_deps}
vshymanskyy/[email protected]
bluemurder/ESP8266-ping@^2.0.1
build_flags =
${env.build_flags}
"-D ENABLE_AP_BUTTON=1"
[env:d1]
platform = espressif8266
board = d1
framework = arduino
lib_ldf_mode = deep+
lib_deps =
${env.lib_deps}
vshymanskyy/[email protected]
bluemurder/ESP8266-ping@^2.0.1
build_flags =
${env.build_flags}
"-D ENABLE_AP_BUTTON=0"
[env:nodemcu-32s]
platform = espressif32
board = nodemcu-32s
framework = arduino
board_build.filesystem = littlefs
lib_deps =
${env.lib_deps}
lib_ignore=LittleFS_esp32
build_flags =
${env.build_flags}
[env:lolin32]
platform = espressif32
board = lolin32
framework = arduino
board_build.filesystem = littlefs
lib_deps =
${env.lib_deps}
lib_ignore=LittleFS_esp32
build_flags =
${env.build_flags}