-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathplatformio.ini
45 lines (41 loc) · 1.22 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
; 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]
[common_env_data]
lib_deps_embedded_external =
https://github.com/tzapu/WiFiManager#v2.0.15-rc.1
jrowberg/I2Cdevlib-MPU6050#c4e96ebba8b6b77d93c478d501c077fd6c0421ad
Brzo [email protected]
bblanchon/[email protected]
electroniccats/MPU6050@^0.5.0
[env:wemos]
platform = [email protected]
framework = arduino
board = esp01_1m
#upload_resetmethod = nodemcu
board_build.flash_mode = dio
board_build.f_flash = 20000000L
build_flags =
-DPIO_FRAMEWORK_ARDUINO_LWIP2_LOW_MEMORY
lib_deps =
${common_env_data.lib_deps_embedded_external}
upload_speed = 921600
[env:nodemcuv2]
platform = [email protected]
framework = arduino
board = nodemcuv2
board_build.flash_mode = dio
board_build.f_flash = 20000000L
build_flags =
-DPIO_FRAMEWORK_ARDUINO_LWIP2_LOW_MEMORY
lib_deps =
${common_env_data.lib_deps_embedded_external}
upload_speed = 921600
monitor_speed = 115200