python编译错误,无法导入名称“gpio”

2024-05-07 12:49:37 发布

您现在位置:Python中文网/ 问答频道 /正文

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

每当我执行.py文件时,都会出现错误“cannot import name'gpio'”

以下是我在安装完其他所有东西后使用的代码,在tut中声明:

#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)

我对这一切都很陌生,所以请容忍我。 非常感谢你。在


Tags: thefromimporthttpoutputledgpioport
1条回答
网友
1楼 · 发布于 2024-05-07 12:49:37

橙色圆周率也有同样的问题。。。我从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/

相关问题 更多 >