-
-
Notifications
You must be signed in to change notification settings - Fork 324
/
platformio.ini
54 lines (49 loc) · 1.24 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 = d1_mini_git
lib_dir = pio/lib
src_dir = pio/src
[common_env_data]
lib_deps =
ArduinoJson@<7
ESP Async WebServer
OneWire
DallasTemperature
RunningMedian
PubSubClient
Blynk@<1.3
ThingSpeak
[env:d1_mini_git]
platform = espressif8266
board = d1_mini
framework = arduino
monitor_speed = 115200
; upload_speed = 921600 ; comment out when facing connections issues
build_flags = !python3 git_rev.py
lib_deps =
${common_env_data.lib_deps}
[env:d1_mini_standalone]
platform = espressif8266
board = d1_mini
framework = arduino
monitor_speed = 115200
upload_speed = 921600
lib_deps =
${common_env_data.lib_deps}
[env:d1_mini_git_stage]
platform = https://github.com/platformio/platform-espressif8266.git#feature/stage
board = d1_mini
framework = arduino
monitor_speed = 115200
upload_speed = 921600
build_flags = !python3 git_rev.py
lib_deps =
${common_env_data.lib_deps}