Skip to content

Commit fde1577

Browse files
committed
Update example file to mention using all 8 slots
1 parent 8c2960c commit fde1577

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/drv2605_simpletest.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@
2222
while True:
2323
print("Playing effect #{0}".format(effect_id))
2424
drv.sequence[0] = adafruit_drv2605.Effect(effect_id) # Set the effect on slot 0.
25-
# You can assign effects to up to 7 different slots to combine
25+
# You can assign effects to up to 8 different slots to combine
2626
# them in interesting ways. Index the sequence property with a
27-
# slot number 0 to 6.
27+
# slot number 0 to 7.
2828
# Optionally, you can assign a pause to a slot. E.g.
2929
# drv.sequence[1] = adafruit_drv2605.Pause(0.5) # Pause for half a second
3030
drv.play() # play the effect

0 commit comments

Comments
 (0)