Skip to content

Commit e7df472

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

1 file changed

Lines changed: 4 additions & 5 deletions

File tree

CircuitPython_Slideshow/code.py

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
# CircuitPython Slideshow - uses the adafruit_slideshow.mpy library
22
import board
33
from adafruit_slideshow import PlayBackOrder, SlideShow
4-
import pulseio
54

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

1312
while slideshow.update():
1413
pass

0 commit comments

Comments
 (0)