forked from Aircoookie/WLED
-
Notifications
You must be signed in to change notification settings - Fork 0
/
platformio.ini
98 lines (89 loc) · 2.33 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
90
91
92
93
94
95
96
97
98
; 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]
src_dir = wled00
env_default = esp32dev
[common_env_data]
build_flags =
-D VERSION=0.8.1
-D DEBUG=1
framework = arduino
lib_deps_builtin =
lib_deps_external =
# TODO replace libs in /lib with managed libs in here if possible
#webserver
# see: http://docs.platformio.org/en/latest/platforms/espressif8266.html
[env:nodemcuv2]
platform = espressif8266
board = nodemcuv2
monitor_speed = 115200
framework = ${common_env_data.framework}
build_flags =
${common_env_data.build_flags}
lib_deps =
${common_env_data.lib_deps_builtin}
${common_env_data.lib_deps_external}
[env:d1_mini]
platform = espressif8266
board = d1_mini
monitor_speed = 115200
framework = ${common_env_data.framework}
build_flags =
${common_env_data.build_flags}
lib_deps =
${common_env_data.lib_deps_builtin}
${common_env_data.lib_deps_external}
[env:esp01_1m]
platform = espressif8266
board = esp01_1m
monitor_speed = 115200
framework = ${common_env_data.framework}
build_flags =
${common_env_data.build_flags}
lib_deps =
${common_env_data.lib_deps_builtin}
${common_env_data.lib_deps_external}
[env:esp01]
platform = espressif8266
board = esp01
monitor_speed = 115200
framework = ${common_env_data.framework}
build_flags =
${common_env_data.build_flags}
-D WLED_DISABLE_MOBILE_UI
-D WLED_DISABLE_OTA
-D WLED_DISABLE_ALEXA
-D WLED_DISABLE_BLYNK
-D WLED_DISABLE_CRONIXIE
-D WLED_DISABLE_HUESYNC
lib_deps =
${common_env_data.lib_deps_builtin}
${common_env_data.lib_deps_external}
# see: http://docs.platformio.org/en/latest/platforms/espressif32.html
[env:esp32dev]
platform = espressif32
board = esp32dev
monitor_speed = 115200
framework = ${common_env_data.framework}
build_flags =
${common_env_data.build_flags}
-D ARDUINO_ARCH_ESP32
-D WORKAROUND_ESP32_BITBANG
lib_deps =
${common_env_data.lib_deps_builtin}
${common_env_data.lib_deps_external}