指间ESP按键操作
502748957@qq.com(讨论 | 贡献)2019年7月25日 (四) 06:37的版本
指间ESP按键操作
import machine, display
from machine import Pin
btA = Pin(0, Pin.IN)
btB = Pin(35, Pin.IN)
bkcolor = 0x333333
tft = display.TFT()
tft.init(tft.ST7789)
tft.clear()
tft.rect(0, 0, 240, 240, bkcolor, bkcolor)
while True:
if btA.value():
tft.roundrect(10, 110, 50, 50, 10, bkcolor, 0x00F0F0)
else:
tft.roundrect(10, 110, 50, 50, 10, bkcolor, 0xF0F000)
if btB.value():
tft.roundrect(180, 110, 50, 50, 10, bkcolor, 0x00F0F0)
else:
tft.roundrect(180, 110, 50, 50, 10, bkcolor, 0xF0F000)
|