forked from Aircoookie/WLED
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changed platformio.ini. A few boards are building now
- Loading branch information
1 parent
b51be31
commit 67013bd
Showing
2 changed files
with
92 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,21 +10,89 @@ | |
|
||
[platformio] | ||
src_dir = wled00 | ||
; env_default = nodemcuv2 | ||
|
||
|
||
[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 | ||
#[email protected] | ||
#[email protected] | ||
#webserver | ||
[email protected] | ||
[email protected] | ||
#[email protected] | ||
#[email protected] | ||
#[email protected] | ||
#[email protected] | ||
|
||
|
||
# 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 | ||
framework = arduino | ||
monitor_speed = 115200 | ||
; lib_ldf_mode = chain+ # for overwriting MQTT_MAX_PACKET_SIZE in MqttJsonClient.h, see: http://docs.platformio.org/en/latest/librarymanager/ldf.html#ldf-mode | ||
; build_flags = -DMQTT_MAX_PACKET_SIZE | ||
framework = ${common_env_data.framework} | ||
build_flags = | ||
${common_env_data.build_flags} | ||
-DWLED_DISABLE_MOBILE_UI | ||
-DWLED_DISABLE_OTA | ||
-DWLED_DISABLE_ALEXA | ||
-DWLED_DISABLE_BLYNK | ||
-DWLED_DISABLE_CRONIXIE | ||
-DWLED_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} | ||
ARDUINO_ARCH_ESP32 | ||
lib_deps = | ||
Blynk | ||
PubSubClient | ||
E131 | ||
Time | ||
Timezone | ||
webserver | ||
WS2812FX | ||
NeoPixelBus | ||
FastLED | ||
${common_env_data.lib_deps_builtin} | ||
${common_env_data.lib_deps_external} | ||
|