mirror of
https://github.com/KevinMidboe/python-gpiozero.git
synced 2025-10-29 17:50:37 +00:00
Big push on getting the docs cleaned up before 1.0. Proper wrapping of everything so it's decently viewable from the command line (or as decently viewable as markdown can be - the tables will never look great from the command line). Only one code change in this PR: rename bouncetime to bounce_time (everything else is PEP-8, so this probably should be too) and change its units to seconds from milliseconds (again, all other durations in the library are in seconds, so it feels inconsistent that this one isn't; for the sake of those who won't read the docs - which is most people - I figure consistency helps with guessing!).
1.0 KiB
1.0 KiB
Contributing
This module was designed for use in education; particularly for young children.
It is not intended to replace RPi.GPIO and it does not claim to be suitable
for all purposes. It is intended to provide a simple interface to everyday
components.
If a proposed change added an advanced feature but made basic usage more complex, it is unlikely to be added.
Suggestions
Please make suggestions by opening an issue explaining your reasoning clearly.
Bugs
Please submit bug reports by opening an issue explaining the problem clearly using code examples.
Documentation
The documentation source lives in the docs folder and is rendered from markdown into HTML using mkdocs. Contributions to the documentation are welcome but should be easy to read and understand.
Python
- Python 2/3 compatibility
- PEP8-compliance (with exceptions)