当前位置:   article > 正文

Python控制Linux(OrangePi 香橙派) GPIO (wiringOP + OPi.GPIO)

wiringop

1. 安装wiringOP

官方教程如下图:
在这里插入图片描述
上面的Linux 终端命令在这里:

//下载 wiringOP 的代码
root@orangepi:~# apt update
root@orangepi:~# apt install git
root@orangepi:~# git clone https://github.com/orangepi-xunlong/wiringOP

//编译 wiringOP
root@orangepi:~# cd wiringOP
root@orangepi:~/wiringOP# ./build clean
root@orangepi:~/wiringOP# ./build

//测试
root@orangepi:~# gpio readall
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12

使用gpio readall命令获取当前主板的GPIO
在这里插入图片描述

2. 安装OPi.GPIO

前提: Linux (OrangePi 香橙派) 已安装Python3
安装命令:

sudo pip3 install --upgrade OPi.GPIO
  • 1

安装完,到Python工具包的目录下找到OPi文件夹,
我的路径是:/usr/local/lib/python3.8/dist-packages
在这里插入图片描述
编辑OPi文件夹下的pin_mappings.py文件,找到_pin_map,根据自己的主板的GPIO口修改BOARD元素。
修改前:
在这里插入图片描述
修改后:
在这里插入图片描述

3. 测试

根据OPi目录下的GPIO.py文件来编写代码,GPIO.py里面已经有详细的使用说明,都在注释里。

# test.py
import OPi.GPIO as GPIO
from time import sleep

# BOARD编号方式,基于插座引脚编号
GPIO.setmode(GPIO.BOARD)

# 输出模式
GPIO.setup(37, GPIO.OUT)

while True:
        GPIO.output(37, GPIO.HIGH)
        sleep(2)
        print("Port37=High")
        GPIO.output(37, GPIO.LOW)
        sleep(2)
        print("Port37=Low")

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18

使用命令sudo python3 test.py运行
在这里插入图片描述
可以万用表测试IO口电平有没有变化

输入模式不再赘述,建议直接看GPIO.py,万一我们的GPIO.py不一样呢(笑)

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/389802
推荐阅读
相关标签
  

闽ICP备14008679号