Updated. /JL

This commit is contained in:
Jan Lerking
2025-04-22 11:49:02 +02:00
parent 0948db2a2e
commit 84751ce823
7 changed files with 24 additions and 4 deletions

6
begynder/billede.py Normal file
View File

@@ -0,0 +1,6 @@
from microbit import *
def billede():
display.show(Image.HEART)
sleep(1000)
display.scroll('Hello')

6
begynder/main.py Normal file
View File

@@ -0,0 +1,6 @@
from .billede import billede
running = True
while running:
billede()