Feat: Premiers exercices sur la carte micro:bit
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2022-09-04 16:56:28 +02:00
parent de5a03ddab
commit 758a1224f9
8 changed files with 80 additions and 75 deletions

View File

@@ -0,0 +1,2 @@
from microbit import *
display.show(Image.HAPPY)

View File

@@ -0,0 +1,6 @@
from microbit import *
import time
display.show(Image.HAPPY)
time.sleep(1)
display.show(Image.SAD)