Merge pull request #723 from pimoroni/helgibbons-patch-1

Scroll Pack: Fix demo.py
This commit is contained in:
Philip Howard 2023-03-21 15:28:19 +00:00 committed by GitHub
commit aa70394495
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ while True:
if m == (i + (loop - b)) % loop and b < tail:
scroll.set_pixel(x, y, br_mult * (tail - b))
scroll.update()
scroll.show()
i += 1
if i >= loop:
i = 0