gpt4 book ai didi

python - 编译错误 - 无法导入名称 'gpio'

转载 作者:太空宇宙 更新时间:2023-11-04 03:01:03 27 4
gpt4 key购买 nike

我在这里试用本教程: http://www.instructables.com/id/Orange-Pi-One-Python-GPIO-basic/?ALLSTEPS

每当我执行我的 .py 文件时,我都会收到错误“无法导入名称‘gpio’”

这是我在安装所有其他东西后使用的代码,在图文中说明:

#import the library
from pyA20.gpio import gpio
from pyA20.gpio import port
from time import sleep

#initialize the gpio module
gpio.init()

#setup the port (same as raspberry pi's gpio.setup() function)
gpio.setcfg(port.PA7, gpio.OUTPUT)

#now we do something (light up the LED)
gpio.output(port.PA7, gpio.HIGH)

#turn off the LED after 2 seconds
sleep(2)
gpio.output(port.PA7, gpio.LOW)

我对这一切都很陌生,所以请多多包涵。非常感谢。

最佳答案

在 orange pi Zero 上遇到了同样的问题...我从 https://pypi.python.org/pypi/pyA10Lime 得到了 python 库然后它起作用了:

root@orangepizero:~# wget https://pypi.python.org/packages/e6/52/a6b558fd5c8eb11e5de710271d59881769425e61d3adf6d235836ca877cc/pyA10Lime-0.2.1.tar.gz
root@orangepizero:~# tar -zxf pyA10Lime-0.2.1.tar.gz
root@orangepizero:~# cd pyA10Lime-0.2.1/
root@orangepizero:~/pyA10Lime-0.2.1#
root@orangepizero:~/pyA10Lime-0.2.1# vi setup.py
#
# @line 60, add :
# elif "sun8i" in processor:
# print ("Detected processor: " + print_color(processor) + " (Probably Allwinner H2+/H3)")
#
root@orangepizero:~/pyA10Lime-0.2.1# python setup.py install
root@orangepizero:~/pyA10Lime-0.2.1# python
Python 2.7.9 (default, Aug 13 2016, 17:56:53)
[GCC 4.9.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> from pyA20.gpio import gpio
>>> from pyA20.gpio import port
>>> gpio.init()
>>> gpio.setcfg(port.PG7, gpio.OUTPUT)
>>> gpio.output(port.PG7, gpio.HIGH)
>>>
>>> gpio.output(port.PG7, gpio.LOW)
>>> exit()

有用链接 https://forum.armbian.com/index.php?/topic/3655-guide-orange-pi-zero-gpios/

关于python - 编译错误 - 无法导入名称 'gpio',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40896609/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com