1
- name : Bug report
2
- description : Report a bug in CircuitPython
1
+ name : 🐞 Bug Report
2
+ description : Create a bug report to help us improve
3
3
labels :
4
4
- bug
5
5
body :
6
6
- type : markdown
7
7
attributes :
8
8
value : >-
9
- ## Bug Report
10
- Thanks! for testing out CircuitPython. Now that you have got a
11
- problem... you can file a bug report for it.
12
- - type : input
9
+ Thanks! for testing out CircuitPython. Now that you have encountered a
10
+ bug... you can file a report for it.
11
+ - type : textarea
13
12
id : firmware
14
13
attributes :
15
14
label : CircuitPython version
16
15
description : >-
17
16
Include the version of CircuitPython you're running. You can see it in
18
- the `boot_out.txt` file, as well as in the REPL.
19
- placeholder : >-
20
- Adafruit CircuitPython 6.2.0-beta.2 on 2021-03-01; Raspberry Pi Pico
21
- with rp2040
17
+ the `boot_out.txt` file, as well as in the `REPL`.
18
+ placeholder : Adafruit CircuitPython 6.2.0 on 2021-03-01; Raspberry Pi Pico with rp2040
19
+ render : python
20
+ validations :
21
+ required : true
22
22
- type : textarea
23
23
id : code
24
24
attributes :
25
25
label : Code/REPL
26
- placeholder : >-
27
- import busio, bitbangio
26
+ description : This is automatically rendered as Python, so no need for backticks.
27
+ placeholder : |
28
+ import busio, bitbangio
28
29
i2c = bitbangio.I2C(board.GP1, board.GP0)
29
30
render : python
31
+ validations :
32
+ required : true
30
33
- type : textarea
31
34
id : behavior
32
35
attributes :
33
36
label : Behavior
34
- description : What happens when you run the code above? Include any error messages.
35
- placeholder : >-
36
- Traceback (most recent call last):
37
+ description : What happens when you run the code above? Include error messages (if any).
38
+ placeholder : |
39
+ ```python
40
+ Traceback (most recent call last):
37
41
File "<stdin>", line 1, in <module>
38
42
TimeoutError: Clock stretch too long
43
+ ```
44
+ On-board led pulses red.
45
+ validations :
46
+ required : true
39
47
- type : textarea
40
48
id : description
41
49
attributes :
42
50
label : Description
43
51
description : Optionally, describe the bug in more detail.
44
- placeholder : >-
45
- - Error while using i2c...
46
- - Only happens when...
52
+ placeholder : |
53
+ - Error while using i2c...
54
+ - Only happens when...
47
55
- might be related to #4291...
48
56
- type : textarea
49
57
id : more-info
50
58
attributes :
51
59
label : Additional information
52
60
description : >-
53
61
Optionally, add any other information like hardware connection, scope
54
- output etc. If you have already done some debugging, mention it here.
62
+ output etc. If you have already done some debugging, mention it here.
63
+ placeholder : Removing [this](url) line resolves the issue.
0 commit comments