1 Star 0 Fork 0

visitor009/esp32 micropython

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
检测button输入.py 632 Bytes
一键复制 编辑 原始数据 按行查看 历史
visitor009 提交于 2024-03-18 12:07 . add 检测button输入.py.
from machine import Pin
import time
led = Pin(22, Pin.OUT) # 创建引脚4为LED对象,设置引脚4为输出
button = Pin(18, Pin.IN, Pin.PULL_UP) #Pin15创建引脚15按钮对象,设置GP15为输入
#按钮要做的事
def reverseGPIO():
if led.value():
led.value(0) #LED熄灭
else:
led.value(1) #LED点亮
try:
while True:
if not button.value():
time.sleep_ms(20)
if not button.value():
reverseGPIO()
while not button.value():
time.sleep_ms(20)
except:
pass
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/visitor009/esp32-micropython.git
[email protected]:visitor009/esp32-micropython.git
visitor009
esp32-micropython
esp32 micropython
master

搜索帮助