├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ └── feature_request.md └── README.md /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve 4 | title: '' 5 | labels: bug 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Describe the bug** 11 | A clear and concise description of what the bug is. 12 | 13 | **To Reproduce** 14 | Steps to reproduce the behavior, including link to a simulation project where we can see the problem. 15 | 16 | **Expected behavior** 17 | A clear and concise description of what you expected to happen. 18 | 19 | **Environment (please complete the following information):** 20 | - OS: [e.g. iOS/Android/Windows] 21 | - Browser [e.g. chrome, safari] 22 | - Version [e.g. 22] 23 | 24 | **Additional context** 25 | Add any other context about the problem here. 26 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | contact_links: 2 | - name: Public Roadmap 3 | url: https://wokwi.com/features 4 | about: Vote for your favorite features here 5 | - name: Wokwi Discord 6 | url: https://wokwi.com/discord 7 | about: Friendly chat with many helpful folks and normally prompt replies 8 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for this project 4 | title: '' 5 | labels: enhancement 6 | assignees: '' 7 | 8 | --- 9 | 10 | 17 | 18 | **Is your feature request related to a problem? Please describe.** 19 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] 20 | 21 | **Describe the solution you'd like** 22 | A clear and concise description of what you want to happen. 23 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Wokwi Feature Requests 2 | 3 | [Wokwi](https://wokwi.com) is an online Arduino simulator. Use this Repo to report bugs or request new features: 4 | 5 | - [Report a bug](https://github.com/wokwi/wokwi-features/issues/new?assignees=&labels=bug&template=bug_report.md&title=) 6 | - [Suggest a feature](https://github.com/wokwi/wokwi-features/issues/new?assignees=&labels=enhancement&template=feature_request.md&title=) 7 | 8 | You can see the list of existing feature requests (and vote for them) here: 9 | 10 | ↣ [Vote for your favorite features](https://wokwi.com/features) 11 | --------------------------------------------------------------------------------