“指间ESP按键操作”的版本间的差异
502748957@qq.com(讨论 | 贡献) (创建页面,内容为“{| style="width: 800px;" |- | <p style="color: #4F4E4E;font-size:220%">'''指间ESP按键操作'''</p> <br> 指间ESP开发板板载了左右两个按键,分别对…”) |
502748957@qq.com(讨论 | 贡献) |
||
第8行: | 第8行: | ||
<br> | <br> | ||
<source lang="c++"> | <source lang="c++"> | ||
− | import machine, display | + | import machine, display |
from machine import Pin | from machine import Pin | ||
第34行: | 第34行: | ||
**该程序使用板载TFT屏幕画出两个圆角矩形用于标识状态,非按下时为青色,按下时为黄色。 | **该程序使用板载TFT屏幕画出两个圆角矩形用于标识状态,非按下时为青色,按下时为黄色。 | ||
[[File:Tftbutton.png|600px|center]] | [[File:Tftbutton.png|600px|center]] | ||
+ | *import为引用所需文件,包括display(屏幕驱动),Pin(IO口驱动)。之后声明按键A与B,初始化TFT并使用背景色"bkcolor"填充屏幕。主程序中扫描按键,按下则绘制黄色圆角矩形,否则绘制青色圆角矩形 | ||
<br> | <br> | ||
|} | |} |
2019年7月25日 (四) 06:36的版本
指间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)
|