Skip to content

Commit eafcd7d

Browse files
committed
add issue templates
1 parent efc2667 commit eafcd7d

File tree

3 files changed

+58
-0
lines changed

3 files changed

+58
-0
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
Thanks! for testing out CircuitPython. Now that you have got a problem... you can
11+
file a bug report for it. Feel free to modify the below format to better suit your issue.
12+
Also, don't forget to remove me... :)
13+
14+
**Firmware**
15+
16+
```python
17+
Adafruit CircuitPython 6.2.0-beta.2 on 2021-03-01; Raspberry Pi Pico with rp2040
18+
```
19+
**Code/REPL**
20+
21+
```python
22+
import busio, bitbangio
23+
i2c = bitbangio.I2C(board.GP1, board.GP0)
24+
```
25+
**Behavior**
26+
27+
```python
28+
Traceback (most recent call last):
29+
File "<stdin>", line 1, in <module>
30+
TimeoutError: Clock stretch too long
31+
```
32+
**Description** _(optional)_
33+
34+
- Error while using i2c...
35+
- Only happens when...
36+
- might be related to #4291...
37+
38+
**Additional Info** _(optional)_
39+
40+
Any other information like hardware connection, scope output etc.

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
contact_links:
2+
- name: Adafruit Forum
3+
url: https://forums.adafruit.com/
4+
about: Not sure if a bug is indeed a bug... post it here.
5+
- name: Adafruit Discord
6+
url: https://adafru.it/discord
7+
about: Similar to the forum but more exposure and prompt replies.
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
We are always adding new features and enhancements to CircuitPython 🚀
11+
and would love ❤ to see what new challenge you have got for us... 🙂

0 commit comments

Comments
 (0)