forked from wled-dev/WLED
-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge commit '4af1f62aab42c4ad0458b06d19fc8a71e4c7a3c6'
- Loading branch information
Showing
38 changed files
with
1,637 additions
and
203 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,83 @@ | ||
name: Bug Report | ||
description: File a bug report | ||
labels: ["bug"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Please quickly search existing issues first before submitting a bug. | ||
- type: textarea | ||
id: what-happened | ||
attributes: | ||
label: What happened? | ||
description: A clear and concise description of what the bug is. | ||
placeholder: Tell us what the problem is. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: how-to-reproduce | ||
attributes: | ||
label: To Reproduce Bug | ||
description: Steps to reproduce the behavior, if consistently possible. | ||
placeholder: Tell us how to make the bug appear. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: expected-behavior | ||
attributes: | ||
label: Expected Behavior | ||
description: A clear and concise description of what you expected to happen. | ||
placeholder: Tell us what you expected to happen. | ||
validations: | ||
required: true | ||
- type: dropdown | ||
id: install_format | ||
attributes: | ||
label: Install Method | ||
description: How did you install WLED? | ||
options: | ||
- Binary from WLED.me | ||
- Self-Compiled | ||
validations: | ||
required: true | ||
- type: input | ||
id: version | ||
attributes: | ||
label: What version of WLED? | ||
description: You can find this in by going to Config -> Security & Updates -> Scroll to Bottom. Copy and paste the entire line after "Server message" | ||
placeholder: "e.g. WLED 0.13.0-b4 (build 2110110)" | ||
validations: | ||
required: true | ||
- type: dropdown | ||
id: Board | ||
attributes: | ||
label: Which microcontroller/board are you seeing the problem on? | ||
multiple: true | ||
options: | ||
- ESP8266 | ||
- ESP32 | ||
- Other | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: logs | ||
attributes: | ||
label: Relevant log/trace output | ||
description: Please copy and paste any relevant log output if you have it. This will be automatically formatted into code, so no need for backticks. | ||
render: shell | ||
- type: textarea | ||
attributes: | ||
label: Anything else? | ||
description: | | ||
Links? References? Anything that will give us more context about the issue you are encountering! | ||
Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in. | ||
validations: | ||
required: false | ||
- type: checkboxes | ||
id: terms | ||
attributes: | ||
label: Code of Conduct | ||
description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/Aircoookie/WLED/blob/master/CODE_OF_CONDUCT.md) | ||
options: | ||
- label: I agree to follow this project's Code of Conduct | ||
required: true |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -207,6 +207,8 @@ build_flags = -g | |
-DCONFIG_LITTLEFS_FOR_IDF_3_2 | ||
-D CONFIG_ASYNC_TCP_USE_WDT=0 | ||
|
||
default_partitions = tools/WLED_ESP32_4MB_1MB_FS.csv | ||
|
||
lib_deps = | ||
${env.lib_deps} | ||
makuna/NeoPixelBus @ 2.6.7 | ||
|
@@ -292,6 +294,7 @@ platform = [email protected] | |
build_unflags = ${common.build_unflags} | ||
build_flags = ${common.build_flags_esp32} -D WLED_RELEASE_NAME=ESP32 #-D WLED_DISABLE_BROWNOUT_DET | ||
lib_deps = ${esp32.lib_deps} | ||
board_build.partitions = ${esp32.default_partitions} | ||
|
||
[env:esp32_eth] | ||
board = esp32-poe | ||
|
@@ -300,6 +303,7 @@ upload_speed = 921600 | |
build_unflags = ${common.build_unflags} | ||
build_flags = ${common.build_flags_esp32} -D WLED_RELEASE_NAME=ESP32_Ethernet -D RLYPIN=-1 -D WLED_USE_ETHERNET -D BTNPIN=-1 | ||
lib_deps = ${esp32.lib_deps} | ||
board_build.partitions = ${esp32.default_partitions} | ||
|
||
[env:esp32s2_saola] | ||
board = esp32dev | ||
|
@@ -406,13 +410,15 @@ build_flags = ${common.build_flags_esp32} | |
lib_deps = ${esp32.lib_deps} | ||
OneWire@~2.3.5 | ||
olikraus/U8g2 @ ^2.28.8 | ||
board_build.partitions = ${esp32.default_partitions} | ||
|
||
[env:m5atom] | ||
board = esp32dev | ||
build_unflags = ${common.build_unflags} | ||
build_flags = ${common.build_flags_esp32} -D LEDPIN=27 -D BTNPIN=39 | ||
lib_deps = ${esp32.lib_deps} | ||
platform = [email protected] | ||
board_build.partitions = ${esp32.default_partitions} | ||
|
||
[env:sp501e] | ||
board = esp_wroom_02 | ||
|
@@ -498,3 +504,4 @@ monitor_filters = esp32_exception_decoder | |
lib_deps = | ||
${esp32.lib_deps} | ||
TFT_eSPI @ ^2.3.70 | ||
board_build.partitions = ${esp32.default_partitions} |
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
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
Oops, something went wrong.