We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 11a5f24 commit e7df472Copy full SHA for e7df472
1 file changed
CircuitPython_Slideshow/code.py
@@ -1,14 +1,13 @@
1
# CircuitPython Slideshow - uses the adafruit_slideshow.mpy library
2
import board
3
from adafruit_slideshow import PlayBackOrder, SlideShow
4
-import pulseio
5
6
# Create the slideshow object that plays through once alphabetically.
7
slideshow = SlideShow(board.DISPLAY,
8
- folder="/images",
9
- loop=True,
10
- order=PlayBackOrder.ALPHABETICAL,
11
- dwell=60)
+ folder="/images",
+ loop=True,
+ order=PlayBackOrder.ALPHABETICAL,
+ dwell=60)
12
13
while slideshow.update():
14
pass
0 commit comments