Skip to content

Commit 0f5f077

Browse files
authored
Merge pull request #142 from RaspberryPiFoundation:dev
Update recipes.rst to add examples for analog clock and automatic blinds with stepper motor
2 parents a8a7206 + 1556d3b commit 0f5f077

File tree

6 files changed

+20
-8
lines changed

6 files changed

+20
-8
lines changed

docs/changelog.rst

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@ Change log
33

44
.. currentmodule:: picozero
55

6+
0.6.1 - 2025-11-28
7+
-----------
8+
9+
+ Updated documentation
10+
611
0.6.0 - 2025-11-26
712
-----------
813

@@ -11,7 +16,6 @@ Change log
1116
+ Updated tests and documentation
1217
+ Other minor bug fixes
1318

14-
1519
0.5.2 - 2025-11-26
1620
-----------
1721

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def __getattr__(cls, name):
6464
author = "Raspberry Pi Foundation"
6565

6666
# The full version, including alpha/beta/rc tags
67-
release = "0.6.0"
67+
release = "0.6.1"
6868

6969

7070
# -- General configuration ---------------------------------------------------

docs/recipes.rst

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -291,12 +291,20 @@ Move the rover (roughly) in a square:
291291
Stepper motor
292292
-------------
293293

294-
Control a stepper motor connected via a driver board (e.g. ULN2003) to create:
294+
Control a stepper motor connected via a driver board (e.g. ULN2003).
295+
296+
Analog clock
297+
~~~~~~~~~~~~
298+
299+
Create a continuously-running analog clock second hand:
295300

296-
Analog clock (continuous second hand):
297301
.. literalinclude:: examples/stepper_analog_clock.py
298302

299-
Automatic blinds (multi-rotation, time-based):
303+
Automatic blinds
304+
~~~~~~~~~~~~~~~~
305+
306+
Time-based blind controller:
307+
300308
.. literalinclude:: examples/stepper_automatic_blinds.py
301309

302310

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
],
66
"deps": [
77
],
8-
"version": "0.6.0"
8+
"version": "0.6.1"
99
}

picozero/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
__name__ = "picozero"
22
__package__ = "picozero"
3-
__version__ = "0.6.0"
3+
__version__ = "0.6.1"
44
__author__ = "Raspberry Pi Foundation"
55

66
from .picozero import (

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
__project__ = "picozero"
44
__packages__ = ["picozero"]
55
__desc__ = "A beginner-friendly library for using common electronics components with the Raspberry Pi Pico. "
6-
__version__ = "0.6.0"
6+
__version__ = "0.6.1"
77
__author__ = "Raspberry Pi Foundation"
88
__author_email__ = "learning@raspberrypi.org"
99
__license__ = "MIT"

0 commit comments

Comments
 (0)