1 Star 0 Fork 0

杨雪元/raspberrypi_cookbook_ed2

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
switch.py 241 Bytes
一键复制 编辑 原始数据 按行查看 历史
Simon Monk 提交于 2016-02-05 12:16 . added lots of code
import RPi.GPIO as GPIO
import time
GPIO.setmode(GPIO.BCM)
GPIO.setup(18, GPIO.IN, pull_up_down=GPIO.PUD_UP)
while True:
input_state = GPIO.input(18)
if input_state == False:
print('Button Pressed')
time.sleep(0.2)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/yang_xueyuan/raspberrypi_cookbook_ed2.git
git@gitee.com:yang_xueyuan/raspberrypi_cookbook_ed2.git
yang_xueyuan
raspberrypi_cookbook_ed2
raspberrypi_cookbook_ed2
master

搜索帮助