We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ded978 commit 11a5f24Copy full SHA for 11a5f24
1 file changed
CircuitPython_Slideshow/code.py
@@ -1,11 +1,14 @@
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,
- folder="/images", loop=True,
8
- order=PlayBackOrder.ALPHABETICAL, dwell=60)
+ folder="/images",
9
+ loop=True,
10
+ order=PlayBackOrder.ALPHABETICAL,
11
+ dwell=60)
12
13
while slideshow.update():
14
pass
0 commit comments