@@ -100,7 +100,7 @@ class ButtonBoard(HoldMixin, CompositeDevice):
100
100
Extends :class:`CompositeDevice` and represents a generic button board or
101
101
collection of buttons.
102
102
103
- :param int \*pins:
103
+ :param int \\ *pins:
104
104
Specify the GPIO pins that the buttons of the board are attached to.
105
105
You can designate as many pins as necessary.
106
106
@@ -133,7 +133,7 @@ class ButtonBoard(HoldMixin, CompositeDevice):
133
133
See :doc:`api_pins` for more information (this is an advanced feature
134
134
which most users can ignore).
135
135
136
- :param \* \*named_pins:
136
+ :param \\ * \ \ *named_pins:
137
137
Specify GPIO pins that buttons of the board are attached to,
138
138
associating each button with a property name. You can designate as
139
139
many pins as necessary and use any names, provided they're not already
@@ -280,7 +280,7 @@ class LEDBoard(LEDCollection):
280
280
leds = LEDBoard(2, 3, 4, 5, 6)
281
281
leds.on()
282
282
283
- :param int \*pins:
283
+ :param int \\ *pins:
284
284
Specify the GPIO pins that the LEDs of the board are attached to. You
285
285
can designate as many pins as necessary. You can also specify
286
286
:class:`LEDBoard` instances to create trees of LEDs.
@@ -307,7 +307,7 @@ class LEDBoard(LEDCollection):
307
307
See :doc:`api_pins` for more information (this is an advanced feature
308
308
which most users can ignore).
309
309
310
- :param \* \*named_pins:
310
+ :param \\ * \ \ *named_pins:
311
311
Specify GPIO pins that LEDs of the board are attached to, associating
312
312
each LED with a property name. You can designate as many pins as
313
313
necessary and use any names, provided they're not already in use by
@@ -497,7 +497,7 @@ class LEDBarGraph(LEDCollection):
497
497
498
498
pause()
499
499
500
- :param int \*pins:
500
+ :param int \\ *pins:
501
501
Specify the GPIO pins that the LEDs of the bar graph are attached to.
502
502
You can designate as many pins as necessary.
503
503
@@ -896,7 +896,7 @@ class StatusZero(LEDBoard):
896
896
status.wifi.green.on()
897
897
status.raining.red.on()
898
898
899
- :param str \*labels:
899
+ :param str \\ *labels:
900
900
Specify the names of the labels you wish to designate the strips to.
901
901
You can list up to three labels. If no labels are given, three strips
902
902
will be initialised with names 'one', 'two', and 'three'. If some, but
@@ -952,7 +952,7 @@ class StatusBoard(CompositeOutputDevice):
952
952
status.wifi.lights.green.on()
953
953
status.wifi.button.when_pressed = status.wifi.lights.toggle
954
954
955
- :param str \*labels:
955
+ :param str \\ *labels:
956
956
Specify the names of the labels you wish to designate the strips to.
957
957
You can list up to five labels. If no labels are given, five strips
958
958
will be initialised with names 'one' to 'five'. If some, but not all
0 commit comments