diff --git a/README.rst b/README.rst index a277d8b..aa2739e 100644 --- a/README.rst +++ b/README.rst @@ -21,7 +21,10 @@ A beginner-friendly library for using common electronics components with the Ras Status ------ -Beta. There will be bugs and issues. API changes are likely. +Beta. There will be bugs and issues. API changes are likely. More devices will be added over time. + +Documentation +------------- Documentation is available at `picozero.readthedocs.io `_ : @@ -29,10 +32,19 @@ Documentation is available at `picozero.readthedocs.io `_ - `API `_ -Notes ------ +Code +---- + +The code and project is at `github.com/RaspberryPiFoundation/picozero `_. + +Issues can be raised at `github.com/RaspberryPiFoundation/picozero/issues `_ (see `contributing `_). + +The latest distribution is available at `pypi.org/project/picozero/ `_. + +Thanks +------ -picozero is inspired by `gpiozero `_ (and reuses some of its underlying structure), but is by design lighter weight and aligned with the Raspberry Pi Pico. Thank you to everyone who has contributed to the gpiozero project. +picozero is inspired by `gpiozero `_ (and reuses some of its underlying structure), but is, by design, lighter weight and aligned with the Raspberry Pi Pico. Thank you to everyone who has contributed to the gpiozero project. .. |pypibadge| image:: https://badge.fury.io/py/picozero.svg :target: https://badge.fury.io/py/picozero diff --git a/picozero/picozero.py b/picozero/picozero.py index 4f9fe28..371ae21 100644 --- a/picozero/picozero.py +++ b/picozero/picozero.py @@ -205,7 +205,8 @@ def blink(self, on_time=1, off_time=None, n=None, wait=False): The length of time in seconds the device will be on. Defaults to 1. :param float off_time: - The length of time in seconds the device will be off. Defaults to 1. + The length of time in seconds the device will be off. If `None`, + it will be the same as ``on_time``. Defaults to `None`. :param int n: The number of times to repeat the blink operation. If None is