output
from microbit import *
try:
while True:
if pin0.is_touched():
display.show(Image.HAPPY)
else:
display.show(Image.SAD)
except:
display.clear()
第三行:捕捉异常。
第五行到第八行:当引脚pin0被触摸,则显示笑脸,如果没有触摸,显示哭脸。原理可查看第3.4 Input/Output小节。
第九行:捕捉到程序异常,则清理界面。