本站改版新增arduino频道

Micropython
Arduino

micropython esp32c3 合宙 通过按键改变LED的亮灭状态


通过按键改变LED的亮灭状态

from machine import Pin
import time

LED=Pin(12,Pin.OUT) #构建LED对象,开始熄灭
KEY=Pin(9,Pin.IN,Pin.PULL_UP) #构建KEY对象
state=0 #LED引脚状态

while True:
    if KEY.value()==0:   #按键被按下
        time.sleep_ms(10) #消除抖动
        if KEY.value()==0: #确认按键被按下
            state=not state  #使用not语句而非~语句
            LED.value(state) #LED状态翻转
            while not KEY.value(): #检测按键是否松开
                pass



推荐分享
图文皆来源于网络,内容仅做公益性分享,版权归原作者所有,如有侵权请告知删除!
 

Copyright © 2014 ESP56.com All Rights Reserved
晋ICP备14006235号-22 晋公网安备14108102001165号

执行时间: 0.0092368125915527 seconds