Skip to content
Snippets Groups Projects
Commit 416b37d9 authored by Martin Winter's avatar Martin Winter
Browse files

improve example

fix bug that R wasn't shown and add antother example for showing a picture
parent 067949f4
No related branches found
No related tags found
No related merge requests found
main.py 100644 → 100755
......@@ -10,7 +10,12 @@ shield = WEMOSMatrixLEDShield()
while True:
scroll("Hallo Welt!",5,30)
shield.blit(get_picture("diamond"))
shield.update()
sleep(1)
shield.blit(letter("R"), (0, 0))
shield.update()
sleep(0.5)
heart = get_picture("heart")
for i in range(8):
shield.blit(heart, (0, 0))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment