@@ -167,7 +167,7 @@ def show(self, *matrices):
167
167
"""
168
168
Refresh the matrix and show the changes.
169
169
170
- :param ~trellis.TRELLIS * matrices: List of `trellis.TRELLIS` objects
170
+ :param ~trellis.TRELLIS matrices: List of `trellis.TRELLIS` objects
171
171
you wish refresh.
172
172
Only required if you want to turn
173
173
on an LED on a specific Trellis
@@ -191,7 +191,7 @@ def led_on(self, x, *matrices):
191
191
have (4 Trellis boards: 0-63). When using `*matrices`,
192
192
the range of `x` is 0-15 for the LED on each Trellis.
193
193
194
- :param ~trellis.TRELLIS * matrices: List of `trellis.TRELLIS` objects
194
+ :param ~trellis.TRELLIS matrices: List of `trellis.TRELLIS` objects
195
195
you wish to turn on the LED `x`.
196
196
Only required if you want to turn
197
197
on an LED on a specific Trellis
@@ -219,7 +219,7 @@ def led_off(self, x, *matrices):
219
219
have (4 Trellis boards: 0-63). When using `*matrices`,
220
220
the range of `x` is 0-15 for the LED on each Trellis.
221
221
222
- :param ~trellis.TRELLIS * matrices: List of `trellis.TRELLIS` objects
222
+ :param ~trellis.TRELLIS matrices: List of `trellis.TRELLIS` objects
223
223
you wish to turn off the LED `x`.
224
224
Only required if you want to turn
225
225
off an LED on a specific Trellis
@@ -246,7 +246,7 @@ def led_status(self, x, *matrices):
246
246
have (4 Trellis boards: 0-63). When using `*matrices`,
247
247
the range of `x` is 0-15 for the LED on each Trellis.
248
248
249
- :param ~trellis.TRELLIS * matrices: List of `trellis.TRELLIS` objects
249
+ :param ~trellis.TRELLIS matrices: List of `trellis.TRELLIS` objects
250
250
you wish to check the LED `x`.
251
251
Only required if you want to check
252
252
an LED on a specific Trellis board.
@@ -268,7 +268,7 @@ def fill(self, color, *matrices):
268
268
269
269
:param int color: 0 == OFF, > 0 == ON
270
270
271
- :param ~trellis.TRELLIS * matrices: List of `trellis.TRELLIS` objects
271
+ :param ~trellis.TRELLIS matrices: List of `trellis.TRELLIS` objects
272
272
you wish to fill with the given color.
273
273
Only required if you want to fill
274
274
the color on a specific Trellis board.
@@ -284,7 +284,7 @@ def read_buttons(self, *matrices):
284
284
"""
285
285
Read the button matrix register on the Trellis.
286
286
287
- :param ~trellis.TRELLIS * matrices: List of `trellis.TRELLIS` object(s)
287
+ :param ~trellis.TRELLIS matrices: List of `trellis.TRELLIS` object(s)
288
288
you wish to read the button matrix of.
289
289
Only required if you want to read the
290
290
the buttons on a specific Trellis board.
@@ -311,7 +311,7 @@ def just_pressed(self, button, *matrices):
311
311
When using `*matrices`, the range of `button` is 0-15
312
312
for the button on each Trellis.
313
313
314
- :param ~trellis.TRELLIS * matrices: List of `trellis.TRELLIS` object you
314
+ :param ~trellis.TRELLIS matrices: List of `trellis.TRELLIS` object you
315
315
wish to check the button on.
316
316
Only required if you want to read the
317
317
the buttons on a specific Trellis board.
@@ -342,7 +342,7 @@ def just_released(self, button, *matrices):
342
342
When using `*matrices`, the range of `button` is 0-15
343
343
for the button on each Trellis.
344
344
345
- :param ~trellis.TRELLIS * matrices: List of `trellis.TRELLIS` object you
345
+ :param ~trellis.TRELLIS matrices: List of `trellis.TRELLIS` object you
346
346
wish to check the button on.
347
347
Only required if you want to read the
348
348
the buttons on a specific Trellis board.
0 commit comments