1 Star 4 Fork 4

LubanCat/python_lubancat_tutorial_code

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
blink_cmd.py 706 Bytes
一键复制 编辑 原始数据 按行查看 历史
flyleaf91 提交于 2021-01-16 17:23 . black check 调整格式
"""Digital IO (Output) using libgpiod, command line"""
import sys
import time
import gpiod
# 根据具体板卡的LED灯连接修改使用的Chip和Line
if len(sys.argv) > 2:
LED_CHIP = sys.argv[1]
LED_LINE_OFFSET = int(sys.argv[2])
else:
print(
"""Usage:
python3 blink_cmd.py <chip> <line offset>
example: python3 blink_cmd.py 3 19"""
)
sys.exit()
led = gpiod.Chip(LED_CHIP).get_line(LED_LINE_OFFSET)
led.request(consumer="LED", type=gpiod.LINE_REQ_DIR_OUT, default_vals=[0])
print(led.consumer())
try:
while True:
led.set_value(0)
time.sleep(0.1)
led.set_value(1)
time.sleep(0.1)
finally:
led.set_value(1)
led.release()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/LubanCat/python_lubancat_tutorial_code.git
git@gitee.com:LubanCat/python_lubancat_tutorial_code.git
LubanCat
python_lubancat_tutorial_code
python_lubancat_tutorial_code
master

搜索帮助