Bertrand Benjamin
f8337b40ab
All checks were successful
continuous-integration/drone/push Build is passing
15 lines
312 B
Python
15 lines
312 B
Python
from microbit import *
|
|
import time
|
|
|
|
while True:
|
|
if button_a.is_pressed():
|
|
display.show(Image.HAPPY)
|
|
time.sleep(1)
|
|
display.clear()
|
|
elif button_b.is_pressed():
|
|
display.show(Image.SAD)
|
|
time.sleep(1)
|
|
display.clear()
|
|
else:
|
|
display.show(Image.HEART)
|