From 2380cdbe4f55ea41d662e29caed8ff41c7fa2145 Mon Sep 17 00:00:00 2001 From: VojtechBartoska Date: Thu, 9 Dec 2021 17:23:54 +0100 Subject: [PATCH 01/10] Templates_update --- .github/ISSUE_TEMPLATE/Feature-request.yml | 54 +++++++++ .github/ISSUE_TEMPLATE/Issue-report.yml | 134 +++++++++++++++++++++ .github/ISSUE_TEMPLATE/bug_report.md | 54 --------- .github/ISSUE_TEMPLATE/config.yml | 8 ++ .github/PULL_REQUEST_TEMPLATE.md | 14 ++- 5 files changed, 204 insertions(+), 60 deletions(-) create mode 100644 .github/ISSUE_TEMPLATE/Feature-request.yml create mode 100644 .github/ISSUE_TEMPLATE/Issue-report.yml delete mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/config.yml diff --git a/.github/ISSUE_TEMPLATE/Feature-request.yml b/.github/ISSUE_TEMPLATE/Feature-request.yml new file mode 100644 index 00000000000..0fdad6de6f4 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/Feature-request.yml @@ -0,0 +1,54 @@ +name: Feature request +description: Suggest an idea for this project +labels: ["Type: Feature request"] +body: + - type: markdown + attributes: + value: | + * We welcome any ideas or feature requests! It is helpful if you can explain exactly why the feature would be useful. + * There are usually some outstanding feature requests in the [existing issues list](https://github.com/espressif/arduino-esp32/issues?q=is%3Aopen+is%3Aissue+label%3A%22Type%3A+Feature+request%22), feel free to add comments to them. + * If you would like to contribute, please read the [contributions guide](https://docs.espressif.com/projects/arduino-esp32/en/latest/contributing.html). + - type: input + id: Area + attributes: + label: Related area + description: Please briefly explain the are of your Pull Request. + placeholder: eg. Board support, specific Peripheral, BT, Wifi... + validations: + required: true + - type: input + id: HW + attributes: + label: Hardware specification + description: Please provide if your proposal is depends on specific Hardware. + placeholder: eg. This PR adds support for Adafruit 32u4 Board. + validations: + required: true + - type: textarea + id: problem-related + attributes: + label: Is your feature request related to a problem? + description: Please provide a clear and concise description of what the problem is. Add relevant issue link. + placeholder: ex. I'm facing the issue/missing function... + validations: + required: true + - type: textarea + id: solution + attributes: + label: Describe the solution you'd like + description: Please provide a clear and concise description of what you want to happen. + placeholder: ex. When using this function... + validations: + required: true + - type: textarea + id: alternatives + attributes: + label: Describe alternatives you've considered + description: Please provide a clear and concise description of any alternative solutions or features you've considered. + placeholder: ex. Choosing other approach wouldn't work, because ... + - type: textarea + id: context + attributes: + label: Additional context + description: Please add any other context or screenshots about the feature request here. + placeholder: ex. This would work only when ... diff --git a/.github/ISSUE_TEMPLATE/Issue-report.yml b/.github/ISSUE_TEMPLATE/Issue-report.yml new file mode 100644 index 00000000000..f98670427d9 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/Issue-report.yml @@ -0,0 +1,134 @@ +name: Issue report +description: Report any problem here +labels: ["Status: Awaiting triage"] +body: + - type: markdown + attributes: + value: | + * Before reporting a new issue please check and search in [List of existing issues](https://github.com/espressif/arduino-esp32/issues?q=is%3Aissue) + * Please check [Online Documentation](https://docs.espressif.com/projects/arduino-esp32/en/latest/index.html) + * Take a look on [Troubleshooting guide](https://docs.espressif.com/projects/arduino-esp32/en/latest/troubleshooting.html) + * If still experiencing the issue, please provide as many details as possible below about your hardware, computer setup and code. + - type: input + id: Board + attributes: + label: Board + description: On which Board does this issue occur? + placeholder: eg. ESP32 Dev Module, ESP32-S2, LilyGo TTGO LoRa32... + validations: + required: true + - type: textarea + id: devboard + attributes: + label: Device Description + description: What development board or other hardware is the chip attached to? + placeholder: ex. DevKitC, plain module on breadboard, etc. If your hardware is custom or unusual, please attach a photo. + validations: + required: true + - type: textarea + id: other-hw + attributes: + label: Hardware Configuration + description: Is anything else attached to the development board? + placeholder: ex. GPIO 18 & 19 are connected to I2C devices. + validations: + required: true + - type: dropdown + id: version + attributes: + label: Version + description: What version of Arduino ESP32 are you running? If possible, consider updating to the latest version. + options: + - latest master + - v2.0.1 + - v2.0.0 + - v1.0.6 + - other + validations: + required: true + - type: input + id: IDE + attributes: + label: IDE Name + description: What IDE are you using? + placeholder: eg. Arduino IDE, PlatformIO, IDF component... + validations: + required: true + - type: input + id: os + attributes: + label: Operating System + description: On which OS does this issue occur? + placeholder: ex. macOS 12.1, Windows 10... + validations: + required: true + - type: input + id: Flash + attributes: + label: Flash frequency + description: What flash frequency is used? + placeholder: eg. 40Mhz + validations: + required: true + - type: dropdown + id: PSRAM + attributes: + label: PSRAM enabled + description: Is PSRAM enabled? + options: + - yes + - no + validations: + required: true + - type: input + id: Upload + attributes: + label: Upload speed + description: What upload speed is used? + placeholder: eg. 115200 + validations: + required: true + - type: Textarea + id: Description + attributes: + label: Description + description: Please describe your problem here and expected behaviour + placeholder: ex. Can't connect/weird behaviour/wrong function/missing parameter.. + validations: + required: true + - type: textarea + id: sketch + attributes: + label: Sketch + description: Please provide your sketch/code which was run + placeholder: ex. related part of the code + validations: + required: true + - type: textarea + id: Debug + attributes: + label: Debug Message + description: Please provide a debug message or error message. + placeholder: Enable Core debug level - Debug on tools menu of Arduino IDE, then put the serial output here + validations: + required: true + - type: textarea + id: other-remarks + attributes: + label: Other Steps to Reproduce + description: Is there any other information you can think of which will help us reproduce this problem? + placeholder: ex. I also tried on other OS, HW...it works correctly on that setup. + - type: textarea + id: more-info + attributes: + label: More Information + description: Do you have any other information from investigating this? + placeholder: Add any additional info. + - type: checkboxes + id: confirmation + attributes: + label: I have check existing issues, online documentation and the Troubleshooting Guide + description: You agree to check all the resources above before opening a new issue. + options: + - label: I confirm I have check existing issues, online documentation and Troubleshooting guide. + required: true \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index 63d88b10f38..00000000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,54 +0,0 @@ ---- -name: Bug report -about: Please fill in the bug report carefully -title: '' -labels: '' -assignees: '' - ---- - -Make your question, not a Statement, inclusive. Include all pertinent information: - -What you are trying to do? -Describe your system( Hardware, computer, O/S, core version, environment). -Describe what is failing. -Show the shortest possible code that will duplicate the error. -Show the EXACT error message(it doesn't work is not enough). -All of this work on your part shows us that you have worked to solve YOUR problem. The more complete your issue posting is, the more likely someone will volunteer their time to help you. - -If you have a Guru Meditation Error or Backtrace, ***please decode it***: -https://github.com/me-no-dev/EspExceptionDecoder - ------------------------------ Remove above ----------------------------- - - -### Hardware: -Board: ?ESP32 Dev Module? ?node32? ?ttgo_lora? -Core Installation version: ?1.0.0? ?1.0.1-rc4? ?1.0.1? ?1.0.1-git? ?1.0.2? ?1.0.3? -IDE name: ?Arduino IDE? ?Platform.io? ?IDF component? -Flash Frequency: ?40Mhz? -PSRAM enabled: ?no? ?yes? -Upload Speed: ?115200? -Computer OS: ?Windows 10? ?Mac OSX? ?Ubuntu? - -### Description: -Describe your problem here - - -### Sketch: (leave the backquotes for [code formatting](https://help.github.com/articles/creating-and-highlighting-code-blocks/)) -```cpp - -//Change the code below by your sketch -#include - -void setup() { -} - -void loop() { -} -``` - -### Debug Messages: -``` -Enable Core debug level: Debug on tools menu of Arduino IDE, then put the serial output here -``` diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 00000000000..2a9b0ef82e0 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,8 @@ +blank_issues_enabled: false +contact_links: + - name: Arduino ESP32 Gitter Channel + url: https://gitter.im/espressif/arduino-esp32 + about: Community channel for questions and help + - name: ESP32 Forum - Arduino + url: https://esp32.com/viewforum.php?f=19 + about: Official Forum for questions \ No newline at end of file diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index b1ca40811b7..877b48fa175 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -1,16 +1,18 @@ ----------------------------------------------------------------------------------------------------------------------------------------------------- -This entire section can be deleted if all items are checked. - +--------------- *By completing this PR sufficiently, you help us to improve the quality of Release Notes* ### Checklist - -1. [ ] Please provide specific title of the PR describing the change, including the component name (eg."Update of Documentation link on Readme.md") +1. [ ] Please provide specific title of the PR describing the change, including the component name (eg "Update of Documentation link on Readme.md") 2. [ ] Please provide related links (eg. Issue, other Project, submodule PR..) ----------------------------------------------------------------------------------------------------------------------------------------------------- +3. [ ] Please check [Contributing guide](https://docs.espressif.com/projects/arduino-esp32/en/latest/contributing.html) +This entire section above can be deleted if all items are checked. +--------------- ## Summary Please describe your proposed PR and what it contains. ## Impact Please describe impact of your PR and it's function. + +## Related links +Please provide links to related issue, PRs etc. From 6daad57662f8f4878c3214da60b7db5d99ae765e Mon Sep 17 00:00:00 2001 From: VojtechBartoska Date: Fri, 10 Dec 2021 12:42:48 +0100 Subject: [PATCH 02/10] Update_template_fixes --- .github/ISSUE_TEMPLATE/Feature-request.yml | 8 ++++---- .github/ISSUE_TEMPLATE/Issue-report.yml | 6 +++--- .github/PULL_REQUEST_TEMPLATE.md | 4 ++-- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/Feature-request.yml b/.github/ISSUE_TEMPLATE/Feature-request.yml index 0fdad6de6f4..9ae9b5c1a6c 100644 --- a/.github/ISSUE_TEMPLATE/Feature-request.yml +++ b/.github/ISSUE_TEMPLATE/Feature-request.yml @@ -12,7 +12,7 @@ body: id: Area attributes: label: Related area - description: Please briefly explain the are of your Pull Request. + description: Please briefly explain the area of your Pull Request. placeholder: eg. Board support, specific Peripheral, BT, Wifi... validations: required: true @@ -20,8 +20,8 @@ body: id: HW attributes: label: Hardware specification - description: Please provide if your proposal is depends on specific Hardware. - placeholder: eg. This PR adds support for Adafruit 32u4 Board. + description: Please provide if your proposal depends on specific Hardware. + placeholder: eg. Support for Adafruit 32u4 Board... validations: required: true - type: textarea @@ -45,7 +45,7 @@ body: attributes: label: Describe alternatives you've considered description: Please provide a clear and concise description of any alternative solutions or features you've considered. - placeholder: ex. Choosing other approach wouldn't work, because ... + placeholder: ex. Choosing other approach wouldn't work, because... - type: textarea id: context attributes: diff --git a/.github/ISSUE_TEMPLATE/Issue-report.yml b/.github/ISSUE_TEMPLATE/Issue-report.yml index f98670427d9..17213b11314 100644 --- a/.github/ISSUE_TEMPLATE/Issue-report.yml +++ b/.github/ISSUE_TEMPLATE/Issue-report.yml @@ -76,8 +76,8 @@ body: label: PSRAM enabled description: Is PSRAM enabled? options: - - yes - - no + - 'yes' + - 'no' validations: required: true - type: input @@ -88,7 +88,7 @@ body: placeholder: eg. 115200 validations: required: true - - type: Textarea + - type: textarea id: Description attributes: label: Description diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 877b48fa175..a4b5cc87859 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -2,11 +2,11 @@ *By completing this PR sufficiently, you help us to improve the quality of Release Notes* ### Checklist -1. [ ] Please provide specific title of the PR describing the change, including the component name (eg "Update of Documentation link on Readme.md") +1. [ ] Please provide specific title of the PR describing the change, including the component name (eg. *„Update of Documentation link on Readme.md“*) 2. [ ] Please provide related links (eg. Issue, other Project, submodule PR..) 3. [ ] Please check [Contributing guide](https://docs.espressif.com/projects/arduino-esp32/en/latest/contributing.html) -This entire section above can be deleted if all items are checked. +*This entire section above can be deleted if all items are checked.* --------------- ## Summary Please describe your proposed PR and what it contains. From cd2263a9f889e4341e07ed52b2357ff1f0e75e39 Mon Sep 17 00:00:00 2001 From: VojtechBartoska Date: Fri, 10 Dec 2021 12:47:13 +0100 Subject: [PATCH 03/10] Pull_request_template_formatting --- .github/PULL_REQUEST_TEMPLATE.md | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index a4b5cc87859..2b768a7b394 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -1,4 +1,3 @@ ---------------- *By completing this PR sufficiently, you help us to improve the quality of Release Notes* ### Checklist From b3045b4f93176089c5d8b15babd1904e5bc6fda2 Mon Sep 17 00:00:00 2001 From: VojtechBartoska Date: Fri, 10 Dec 2021 12:49:53 +0100 Subject: [PATCH 04/10] Pull_request_template_formatting --- .github/PULL_REQUEST_TEMPLATE.md | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index a4b5cc87859..2b768a7b394 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -1,4 +1,3 @@ ---------------- *By completing this PR sufficiently, you help us to improve the quality of Release Notes* ### Checklist From b8b2f3eecbef12d29f01f07c0a2a3eb2998500b3 Mon Sep 17 00:00:00 2001 From: VojtechBartoska Date: Fri, 10 Dec 2021 12:50:31 +0100 Subject: [PATCH 05/10] PR_template_formatting --- .github/PULL_REQUEST_TEMPLATE.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 2b768a7b394..737f55dcc61 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -6,7 +6,8 @@ 3. [ ] Please check [Contributing guide](https://docs.espressif.com/projects/arduino-esp32/en/latest/contributing.html) *This entire section above can be deleted if all items are checked.* ---------------- + +----------- ## Summary Please describe your proposed PR and what it contains. From c4fb2d9a9cb78dc35b3ecdce47659ea25ca4bbb4 Mon Sep 17 00:00:00 2001 From: VojtechBartoska Date: Mon, 13 Dec 2021 15:33:23 +0100 Subject: [PATCH 06/10] Rendering and typo fixes --- .github/ISSUE_TEMPLATE/Issue-report.yml | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/Issue-report.yml b/.github/ISSUE_TEMPLATE/Issue-report.yml index 17213b11314..fce97cff831 100644 --- a/.github/ISSUE_TEMPLATE/Issue-report.yml +++ b/.github/ISSUE_TEMPLATE/Issue-report.yml @@ -102,6 +102,7 @@ body: label: Sketch description: Please provide your sketch/code which was run placeholder: ex. related part of the code + render: shell validations: required: true - type: textarea @@ -109,26 +110,21 @@ body: attributes: label: Debug Message description: Please provide a debug message or error message. - placeholder: Enable Core debug level - Debug on tools menu of Arduino IDE, then put the serial output here + placeholder: Enable Core debug level - Debug on tools menu of Arduino IDE, then put the serial output here. + render: shell validations: required: true - type: textarea id: other-remarks attributes: - label: Other Steps to Reproduce - description: Is there any other information you can think of which will help us reproduce this problem? + label: Other Steps to Reproduce + description: Is there any other information you can think of which will help us reproduce this problem? Any additional info can be added as well. placeholder: ex. I also tried on other OS, HW...it works correctly on that setup. - - type: textarea - id: more-info - attributes: - label: More Information - description: Do you have any other information from investigating this? - placeholder: Add any additional info. - type: checkboxes id: confirmation attributes: - label: I have check existing issues, online documentation and the Troubleshooting Guide + label: I have checked existing issues, online documentation and the Troubleshooting Guide description: You agree to check all the resources above before opening a new issue. options: - - label: I confirm I have check existing issues, online documentation and Troubleshooting guide. + - label: I confirm I have checked existing issues, online documentation and Troubleshooting guide. required: true \ No newline at end of file From 0b4ebff7260db9e8e77f5984f4a05cd8e92264dd Mon Sep 17 00:00:00 2001 From: VojtechBartoska Date: Mon, 13 Dec 2021 16:46:36 +0100 Subject: [PATCH 07/10] Espessif boards added --- .github/ISSUE_TEMPLATE/Feature-request.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/Feature-request.yml b/.github/ISSUE_TEMPLATE/Feature-request.yml index 9ae9b5c1a6c..f0cac1d16a0 100644 --- a/.github/ISSUE_TEMPLATE/Feature-request.yml +++ b/.github/ISSUE_TEMPLATE/Feature-request.yml @@ -21,7 +21,7 @@ body: attributes: label: Hardware specification description: Please provide if your proposal depends on specific Hardware. - placeholder: eg. Support for Adafruit 32u4 Board... + placeholder: eg. Support for ESP32 DevKitC, ESP32-C3 DevKitM... validations: required: true - type: textarea From b3a50336b3f17c3920e2a017eb6f08e23023c6ec Mon Sep 17 00:00:00 2001 From: VojtechBartoska Date: Tue, 14 Dec 2021 12:52:24 +0100 Subject: [PATCH 08/10] Add Decoder link and Readme update --- .github/ISSUE_TEMPLATE/Issue-report.yml | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/Issue-report.yml b/.github/ISSUE_TEMPLATE/Issue-report.yml index fce97cff831..145e9785323 100644 --- a/.github/ISSUE_TEMPLATE/Issue-report.yml +++ b/.github/ISSUE_TEMPLATE/Issue-report.yml @@ -109,7 +109,7 @@ body: id: Debug attributes: label: Debug Message - description: Please provide a debug message or error message. + description: Please provide a debug message or error message. If you have a Guru Meditation Error or Backtrace, please decode it with [ExceptionDecoder](https://github.com/me-no-dev/EspExceptionDecoder) placeholder: Enable Core debug level - Debug on tools menu of Arduino IDE, then put the serial output here. render: shell validations: diff --git a/README.md b/README.md index e420f9e1d71..381bc5234d3 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ You can use [EspExceptionDecoder](https://github.com/me-no-dev/EspExceptionDecod ### Issue/Bug report template Before reporting an issue, make sure you've searched for similar one that was already created. Also make sure to go through all the issues labelled as [Type: For reference](https://github.com/espressif/arduino-esp32/issues?q=is%3Aissue+label%3A%22Type%3A+For+reference%22+). -Finally, if you are sure no one else had the issue, follow the [issue template](docs/ISSUE_TEMPLATE.md) while reporting any issue. +Finally, if you are sure no one else had the issue, follow the **Issue template** or **Feature request template** while reporting any [new issue] (https://github.com/espressif/arduino-esp32/issues/new/choose). ### Contributing From 5f6084702549ca60d4d48c4c15179f3d2d885a36 Mon Sep 17 00:00:00 2001 From: VojtechBartoska Date: Tue, 14 Dec 2021 12:54:58 +0100 Subject: [PATCH 09/10] Link fix --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 381bc5234d3..969a8f6fb11 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ You can use [EspExceptionDecoder](https://github.com/me-no-dev/EspExceptionDecod ### Issue/Bug report template Before reporting an issue, make sure you've searched for similar one that was already created. Also make sure to go through all the issues labelled as [Type: For reference](https://github.com/espressif/arduino-esp32/issues?q=is%3Aissue+label%3A%22Type%3A+For+reference%22+). -Finally, if you are sure no one else had the issue, follow the **Issue template** or **Feature request template** while reporting any [new issue] (https://github.com/espressif/arduino-esp32/issues/new/choose). +Finally, if you are sure no one else had the issue, follow the **Issue template** or **Feature request template** while reporting any [new Issue](https://github.com/espressif/arduino-esp32/issues/new/choose). ### Contributing From f71e3869ec501945a9f1e6edaaefcf9d80d16744 Mon Sep 17 00:00:00 2001 From: VojtechBartoska Date: Tue, 14 Dec 2021 14:55:39 +0100 Subject: [PATCH 10/10] Rendering functions --- .github/ISSUE_TEMPLATE/Feature-request.yml | 2 +- .github/ISSUE_TEMPLATE/Issue-report.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/Feature-request.yml b/.github/ISSUE_TEMPLATE/Feature-request.yml index f0cac1d16a0..d50524433da 100644 --- a/.github/ISSUE_TEMPLATE/Feature-request.yml +++ b/.github/ISSUE_TEMPLATE/Feature-request.yml @@ -12,7 +12,7 @@ body: id: Area attributes: label: Related area - description: Please briefly explain the area of your Pull Request. + description: Please briefly explain the area of your Feature Request. placeholder: eg. Board support, specific Peripheral, BT, Wifi... validations: required: true diff --git a/.github/ISSUE_TEMPLATE/Issue-report.yml b/.github/ISSUE_TEMPLATE/Issue-report.yml index 145e9785323..f355f26628a 100644 --- a/.github/ISSUE_TEMPLATE/Issue-report.yml +++ b/.github/ISSUE_TEMPLATE/Issue-report.yml @@ -102,7 +102,7 @@ body: label: Sketch description: Please provide your sketch/code which was run placeholder: ex. related part of the code - render: shell + render: cpp validations: required: true - type: textarea @@ -111,7 +111,7 @@ body: label: Debug Message description: Please provide a debug message or error message. If you have a Guru Meditation Error or Backtrace, please decode it with [ExceptionDecoder](https://github.com/me-no-dev/EspExceptionDecoder) placeholder: Enable Core debug level - Debug on tools menu of Arduino IDE, then put the serial output here. - render: shell + render: plain validations: required: true - type: textarea