|
| 1 | +name: 🐞 Bug Report |
| 2 | +description: Create a bug report to help us improve |
| 3 | +labels: |
| 4 | + - bug |
| 5 | +body: |
| 6 | + - type: markdown |
| 7 | + attributes: |
| 8 | + value: >- |
| 9 | + Thanks! for testing out CircuitPython. Now that you have encountered a |
| 10 | + bug... you can file a report for it. |
| 11 | + - type: textarea |
| 12 | + id: firmware |
| 13 | + attributes: |
| 14 | + label: CircuitPython version |
| 15 | + description: >- |
| 16 | + Include the version of CircuitPython you're running. You can see it in |
| 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 | + - type: textarea |
| 23 | + id: code |
| 24 | + attributes: |
| 25 | + label: Code/REPL |
| 26 | + description: This is automatically rendered as Python, so no need for backticks. |
| 27 | + placeholder: | |
| 28 | + import busio, bitbangio |
| 29 | + i2c = bitbangio.I2C(board.GP1, board.GP0) |
| 30 | + render: python |
| 31 | + validations: |
| 32 | + required: true |
| 33 | + - type: textarea |
| 34 | + id: behavior |
| 35 | + attributes: |
| 36 | + label: Behavior |
| 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): |
| 41 | + File "<stdin>", line 1, in <module> |
| 42 | + TimeoutError: Clock stretch too long |
| 43 | + ``` |
| 44 | + On-board led pulses red. |
| 45 | + validations: |
| 46 | + required: true |
| 47 | + - type: textarea |
| 48 | + id: description |
| 49 | + attributes: |
| 50 | + label: Description |
| 51 | + description: Optionally, describe the bug in more detail. |
| 52 | + placeholder: | |
| 53 | + - Error while using i2c... |
| 54 | + - Only happens when... |
| 55 | + - might be related to #4291... |
| 56 | + - type: textarea |
| 57 | + id: more-info |
| 58 | + attributes: |
| 59 | + label: Additional information |
| 60 | + description: >- |
| 61 | + Optionally, add any other information like hardware connection, scope |
| 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