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

时间:2016-11-30 19:28:33

标签: python compilation gpio

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

每当我执行.py文件时,都会收到错误"无法导入名称' 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)

我对这一切都很陌生,所以请耐心等待。 非常感谢你。

1 个答案:

答案 0 :(得分:2)

在橙色pi上遇到了同样的问题...我从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/