Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ Change log

.. currentmodule:: picozero

0.6.1 - 2025-11-28
-----------

+ Updated documentation

0.6.0 - 2025-11-26
-----------

Expand All @@ -11,7 +16,6 @@ Change log
+ Updated tests and documentation
+ Other minor bug fixes


0.5.2 - 2025-11-26
-----------

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def __getattr__(cls, name):
author = "Raspberry Pi Foundation"

# The full version, including alpha/beta/rc tags
release = "0.6.0"
release = "0.6.1"


# -- General configuration ---------------------------------------------------
Expand Down
14 changes: 11 additions & 3 deletions docs/recipes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -291,12 +291,20 @@ Move the rover (roughly) in a square:
Stepper motor
-------------

Control a stepper motor connected via a driver board (e.g. ULN2003) to create:
Control a stepper motor connected via a driver board (e.g. ULN2003).

Analog clock
~~~~~~~~~~~~

Create a continuously-running analog clock second hand:

Analog clock (continuous second hand):
.. literalinclude:: examples/stepper_analog_clock.py

Automatic blinds (multi-rotation, time-based):
Automatic blinds
~~~~~~~~~~~~~~~~

Time-based blind controller:

.. literalinclude:: examples/stepper_automatic_blinds.py


Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
],
"deps": [
],
"version": "0.6.0"
"version": "0.6.1"
}
2 changes: 1 addition & 1 deletion picozero/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
__name__ = "picozero"
__package__ = "picozero"
__version__ = "0.6.0"
__version__ = "0.6.1"
__author__ = "Raspberry Pi Foundation"

from .picozero import (
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
__project__ = "picozero"
__packages__ = ["picozero"]
__desc__ = "A beginner-friendly library for using common electronics components with the Raspberry Pi Pico. "
__version__ = "0.6.0"
__version__ = "0.6.1"
__author__ = "Raspberry Pi Foundation"
__author_email__ = "learning@raspberrypi.org"
__license__ = "MIT"
Expand Down