센텀고 24. 08. 16 정보수업 버튼 A와 버튼 B를 눌러 이모티콘 순서대로 출력
본문
[code]
from microbit import *
emoticon_list = [Image.HAPPY, Image.DUCK, Image.ANGRY, Image.SAD]
index = 0
display.show(emoticon_list[index])
while True:
if button_b.was_pressed():
index = index + 1
[/code]
좋아요2
이 글을 좋아요하셨습니다
등록된 댓글이 없습니다.