-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added all required build configurations
- Loading branch information
1 parent
3c6036e
commit 7ec0c3f
Showing
3 changed files
with
69 additions
and
14 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,3 +4,6 @@ | |
.vscode/launch.json | ||
.vscode/ipch | ||
.vscode | ||
/firmware_binaries | ||
/copy_firmware_binaries | ||
/merge_bin_esp.py |
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 |
---|---|---|
|
@@ -25,7 +25,7 @@ lib_deps_external = | |
adafruit/Adafruit ST7735 and ST7789 Library@^1.7.5 | ||
paulstoffregen/OneWire @ 2.3.6 | ||
|
||
[env:NodeMCU] | ||
[env:NodeMCU-4M] | ||
platform = [email protected] | ||
board = nodemcuv2 | ||
framework = arduino | ||
|
@@ -35,17 +35,27 @@ build_flags = | |
lib_deps = | ||
${common_env_data.lib_deps_external} | ||
|
||
[env:ESP01_1M] | ||
[env:ESP8266-4M] | ||
platform = [email protected] | ||
board = esp12e | ||
framework = arduino | ||
build_flags = | ||
-D ESP8266_BOARD | ||
-D ESP8266_Generic | ||
lib_deps = | ||
${common_env_data.lib_deps_external} | ||
|
||
[env:ESP8266-1M] | ||
platform = [email protected] | ||
board = esp01_1m | ||
framework = arduino | ||
build_flags = | ||
-D ESP8266_BOARD | ||
-D ESP01_1M | ||
-D ESP8266_1M | ||
lib_deps = | ||
${common_env_data.lib_deps_external} | ||
|
||
[env:ESP07] | ||
[env:ESP07-4M] | ||
platform = [email protected] | ||
board = esp07 | ||
framework = arduino | ||
|
@@ -55,17 +65,17 @@ build_flags = | |
lib_deps = | ||
${common_env_data.lib_deps_external} | ||
|
||
[env:ESP12s] | ||
[env:ESP12-4M] | ||
platform = [email protected] | ||
board = esp12e | ||
framework = arduino | ||
build_flags = | ||
-D ESP8266_BOARD | ||
-D ESP12s | ||
-D ESP12 | ||
lib_deps = | ||
${common_env_data.lib_deps_external} | ||
|
||
[env:D1_Mini] | ||
[env:D1_Mini-4M] | ||
platform = [email protected] | ||
board = d1_mini | ||
framework = arduino | ||
|
@@ -76,7 +86,7 @@ lib_deps = | |
${common_env_data.lib_deps_external} | ||
|
||
[env:ESP32_DevKitC] | ||
platform = espressif32@1.11.0 | ||
platform = espressif32@1.12.4 | ||
board = esp32dev | ||
framework = arduino | ||
build_flags = | ||
|
@@ -85,8 +95,38 @@ build_flags = | |
lib_deps = | ||
${common_env_data.lib_deps_external} | ||
|
||
[env:ESP32S] | ||
platform = [email protected] | ||
board = esp32dev | ||
framework = arduino | ||
build_flags = | ||
-D ESP32_BOARD | ||
-D ESP32S | ||
lib_deps = | ||
${common_env_data.lib_deps_external} | ||
|
||
[env:ESP32_Generic] | ||
platform = [email protected] | ||
board = esp32dev | ||
framework = arduino | ||
build_flags = | ||
-D ESP32_BOARD | ||
-D ESP32_Generic | ||
lib_deps = | ||
${common_env_data.lib_deps_external} | ||
|
||
[env:ESP32_WROOM] | ||
platform = [email protected] | ||
board = esp32dev | ||
framework = arduino | ||
build_flags = | ||
-D ESP32_BOARD | ||
-D ESP32_WROOM | ||
lib_deps = | ||
${common_env_data.lib_deps_external} | ||
|
||
[env:M5StickC] | ||
platform = espressif32@1.11.0 | ||
platform = espressif32@1.12.4 | ||
board = m5stick-c | ||
framework = arduino | ||
build_flags = | ||
|
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