This library is a wrapper library for the Adafruit/NeoPixel. This library is an auxilary liibrary and is intended to be installed along with Adafruit's library, not as an individual library.
There are broadly three different levels of contributors.
| Role | Description |
|---|---|
| Core member | Code owner and reviewer |
| Volunteer | Directly affiliated code contributor |
| Open Source Contributor | Non-affiliated general contributor |
Core member and Volunteer roles are assigned internally at Code Wth Her. Open Source Contributors are for the general public.
All contributors are invited to submit issues for the following:
- Bugs
- Feature Requests
- Discussion
In order to ensure we're progressing in methodically, code shoud only be contributed to existing issues or issues should created which will in turn be added to the project timeline, tabled to the backlog, or dismissed.
- Accepted Project Timeline
- We will be following a 2 week sprint cycle
- Assignments will be handled explicitly via meetings or email
When contributing to the repo, please insure that:
- The PR resolves at least one existing/documented issue
- Include issue number by linking the
#XXXin the description
- Include issue number by linking the
- Write small PRs that handle specific topics
- Format commit messages with readability in mind
- Start with an action verb like "Fix" or "Add"
We incorporate a modified GitHub flow branching strategy.
Each feature has an overarching branch that is prefixed with <issue number>-feature-<feature_name> which then has subsequent branches implementing parts of that feature. The intention is to make small PRs that are easier to conduct code review for. See the attached image example for more details.
Git Version Tags / Release Tags are required to be accepted into the Arduino Registry. The current version should be reflected in library.properties
Each new PR should increment the current release version in the following format version.feature.patch:
1.0.0for full new versions that has major rewrites in the corresponding instruction material0.1.0for new features or activities0.0.1for bug patches or fixes
When the release version is incremented, any numbers to the right are reset to 0.
- Ex: New major version:
0.2.0->1.0.0- Version
0 -> 1 - Feature
2 -> 0 - Patch
0 -> 0
- Version
- Ex: New feature:
4.8.2->4.9.0- Version
4 - Feature
8 -> 9 - Patch
2 -> 0
- Version
- Ex: New patch:
5.4.22->5.4.23- Version
5 - Feature
4 - Patch
22 -> 23
- Version
If you have any questions or concerns, contact ryan@codewithher.org.
- Not familar with git/version control?
- I recommend following GitHub/Skills tutorials.
- Not familiar with markdown?
- Make sure you use the "preview" feature instead of spamming commits
- Do a quick scan of Markdownguide
- Look at the code view of existing issues or PRs
