-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathplatformio.ini
67 lines (54 loc) · 1.61 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
; 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
[common_env_data]
platform = [email protected]
lib_deps =
FastLED@^3.3.3
ESPAsyncWiFiManager@^0.22
ESP Async WebServer@^1.2.3
ezTime@^0.8.3
TaskScheduler@^3.1.4
ArduinoJson@^6.15.1
ArduinoOTA@^1.0.5
joaolopesf/RemoteDebug@^3.0.5
# OTA upload
upload_protocol = espota
upload_port = wordclock
# Serial/USB upload
#upload_protocol = esptool
#upload_port = /dev/ttyS4
upload_speed = 921600
# Serial Monitor
monitor_port = /dev/ttyS4
monitor_speed = 115200
[env:d1_mini]
board = d1_mini
platform = ${common_env_data.platform}
framework = arduino
lib_deps =
${common_env_data.lib_deps}
upload_protocol = ${common_env_data.upload_protocol}
upload_port = ${common_env_data.upload_port}
upload_speed = ${common_env_data.upload_speed}
monitor_port = ${common_env_data.monitor_port}
monitor_speed = ${common_env_data.monitor_speed}
[env:nodemcuv2]
board = nodemcuv2
platform = ${common_env_data.platform}
framework = arduino
lib_deps =
${common_env_data.lib_deps}
upload_protocol = ${common_env_data.upload_protocol}
upload_port = ${common_env_data.upload_port}
upload_speed = ${common_env_data.upload_speed}
monitor_port = ${common_env_data.monitor_port}
monitor_speed = ${common_env_data.monitor_speed}