Python 3下的RPi.GPIO


8

Raspberry Pi2 B,标准Raspbian。使用RPi.GPIO,将V3安装为:

sudo apt-get install python-rpi.gpio python3-rpi.gpio

上线

import RPi.GPIO

我懂了

ImportError: /usr/local/lib/python3.2/dist-packages/RPi/GPIO.so: undefined symbol: _Py_ZeroStruct  

(在解释器中或作为以python3 myCode.py运行的代码)。

请帮忙!?


它可能在杰西身上坏了。它要求Python <3.3,但jessie使用Python 3.4.2。
2015年

Answers:


1
import RPi.GPIO as GPIO

GPIO.setmode(GPIO.BCM)  # set board mode to Broadcom

GPIO.setup(17, GPIO.OUT)  # set up pin 17
GPIO.setup(18, GPIO.OUT)  # set up pin 18

GPIO.output(17, 1)  # turn on pin 17
GPIO.output(18, 1)  # turn on pin 18

这里


0

您的Pi可能未更新。

转到pi上的命令行,然后输入:

sudo apt-get update
sudo apt-get upgrade

运行这些命令后,请重新安装两个软件包。它应该工作。


By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.