Skip to content

Commit 11a5f24

Browse files
authored
Update code.py
1 parent 3ded978 commit 11a5f24

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

CircuitPython_Slideshow/code.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
1+
# CircuitPython Slideshow - uses the adafruit_slideshow.mpy library
12
import board
23
from adafruit_slideshow import PlayBackOrder, SlideShow
34
import pulseio
45

56
# Create the slideshow object that plays through once alphabetically.
67
slideshow = SlideShow(board.DISPLAY,
7-
folder="/images", loop=True,
8-
order=PlayBackOrder.ALPHABETICAL, dwell=60)
8+
folder="/images",
9+
loop=True,
10+
order=PlayBackOrder.ALPHABETICAL,
11+
dwell=60)
912

1013
while slideshow.update():
1114
pass

0 commit comments

Comments
 (0)