pimoroni-pico/micropython/examples/pico_scroll/scroll_text.py

9 lines
147 B
Python
Raw Normal View History

2021-05-07 14:43:33 +01:00
import time
2023-03-13 19:39:33 +00:00
from picoscroll import PicoScroll
2021-05-07 14:43:33 +01:00
2023-03-13 19:39:33 +00:00
scroll = PicoScroll()
2021-05-07 14:43:33 +01:00
while True:
scroll.scroll_text("Hello World", 128, 80)
time.sleep(1)