Skip to content
This repository was archived by the owner on Oct 6, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions .github/ISSUE_TEMPLATE/bug-report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: "Bug Report"
description: "Report a bug or error you've encountered with the project."
labels: "bug"
body:
- type: "markdown"
content: |
**Describe the bug**
A clear and concise description of what the bug is.
- type: "input"
attributes:
label: "Steps to reproduce"
description: "Provide a list of steps to reproduce the issue."
placeholder: "Step 1, Step 2, ..."
required: true
- type: "input"
attributes:
label: "Expected behavior"
description: "A clear and concise description of what you expected to happen."
required: true
- type: "input"
attributes:
label: "Screenshots"
description: "If applicable, add screenshots to help explain your problem."
- type: "input"
attributes:
label: "Environment"
description: "Please provide the environment where the issue occurred (e.g. OS version)."
placeholder: "e.g. Ubuntu 20.04"
- type: "input"
attributes:
label: "Additional context"
description: "Any other information or context."
10 changes: 10 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
issue_templates:
- name: "Bug Report"
about: "Create a report to help us improve the project."
labels: "bug"
template: "bug-report.yml"

- name: "Feature Request"
about: "Suggest an idea for this project."
labels: "enhancement"
template: "feature-request.yml"
21 changes: 21 additions & 0 deletions .github/ISSUE_TEMPLATE/feature-request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: "Feature Request"
description: "Suggest an enhancement or new feature you'd like to see."
labels: "enhancement"
body:
- type: "markdown"
content: |
**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is.
- type: "input"
attributes:
label: "Describe the solution you'd like"
description: "A clear and concise description of what you want to happen."
required: true
- type: "input"
attributes:
label: "Describe alternatives you've considered"
description: "A clear and concise description of any alternative solutions you've considered."
- type: "input"
attributes:
label: "Additional context"
description: "Add any other context or screenshots about the feature request."
26 changes: 26 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "build",
"type": "shell",
"command": "msbuild",
"args": [
// Ask msbuild to generate full paths for file names.
"/property:GenerateFullPaths=true",
"/t:build",
// Do not generate summary otherwise it leads to duplicate errors in Problems panel
"/consoleloggerparameters:NoSummary"
],
"group": "build",
"presentation": {
// Reveal the output only if unrecognized errors occur.
"reveal": "silent"
},
// Use the standard MS compiler pattern to detect errors, warnings and infos
"problemMatcher": "$msCompile"
}
]
}
1 change: 1 addition & 0 deletions Arduino
Submodule Arduino added at 997966
Loading
Loading