Skip to content

Commit

Permalink
Merge pull request #140 from pimoroni/example/micropython-scroll-text
Browse files Browse the repository at this point in the history
Simple example for scrolling text
  • Loading branch information
Gadgetoid authored May 7, 2021
2 parents 5a60c47 + d33c0ca commit 0c22fa9
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions micropython/examples/pico_scroll/scroll_text.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import time
import picoscroll as scroll

scroll.init()

while True:
scroll.scroll_text("Hello World", 128, 80)
time.sleep(1)

0 comments on commit 0c22fa9

Please sign in to comment.