Python 3.7.3 SystemError: error return without exception set
Python 3.7.3 SystemError: error return without exception set
我正在尝试为 MCP3008 AD 转换器安装 Adafruit 的库。所有安装过程都成功了,但是在 运行 一个基本程序之后,它显示了一条错误消息。我是 运行 RPi4 上的这个程序 python 3.7.3。这是我的代码:
import time
import Adafruit_GPIO.SPI as SPI
import Adafruit_MCP3008
SPI_PORT = 0
SPI_DEVICE = 0
mcp = Adafruit_MCP3008.MCP3008(spi=SPI.SpiDev(SPI_PORT, SPI_DEVICE))
print('Reading MCP3008 values, press Ctrl-C to quit...')
print('| {0:>4} | {1:>4} | {2:>4} | {3:>4} | {4:>4} | {5:>4} | {6:>4} | {7:>4} |'.format(*range(8)))
print('-' * 57)
while True:
values = [0]*8
for i in range(8):
values[i] = mcp.read_adc(i)
print('| {0:>4} | {1:>4} | {2:>4} | {3:>4} | {4:>4} | {5:>4} | {6:>4} | {7:>4} |'.format(*values))
time.sleep(0.5)
并且在使用命令从我的 RPi4 调用特定程序后:
sudo python3 adc.py
控制台向我显示此消息:
Traceback (most recent call last):
File "adc.py", line 7, in <module>
mcp = Adafruit_MCP3008.MCP3008(spi=SPI.SpiDev(SPI_PORT, SPI_DEVICE))
File "/usr/local/lib/python3.7/dist-packages/Adafruit_GPIO-1.0.4-py3.7.egg/Adafruit_GPIO/SPI.py", line 46, in __init__
SystemError: error return without exception set
真的很烦,因为我想不通问题出在哪里。我是 Python 的新手,但我读到它与 C-2-Python 解释器有关。你能帮我解决这个问题吗?它用于使用 MCP3008 ADC 读取光电二极管输入。非常感谢!
已解决!新的 RasPi OS 不再支持我使用的库。如果您遇到同样的问题,则必须使用此命令 sudo pip3 install adafruit-circuitpython-mcp3xxx
而不是 git clone https://github.com/adafruit/Adafruit_Python_GPIO.git
。当然,您必须执行一些其他步骤才能实现 MCP3008 的全部功能。如需更多信息或步骤,请随时与我联系。如果我知道怎么做,我会提供帮助。
我正在尝试为 MCP3008 AD 转换器安装 Adafruit 的库。所有安装过程都成功了,但是在 运行 一个基本程序之后,它显示了一条错误消息。我是 运行 RPi4 上的这个程序 python 3.7.3。这是我的代码:
import time
import Adafruit_GPIO.SPI as SPI
import Adafruit_MCP3008
SPI_PORT = 0
SPI_DEVICE = 0
mcp = Adafruit_MCP3008.MCP3008(spi=SPI.SpiDev(SPI_PORT, SPI_DEVICE))
print('Reading MCP3008 values, press Ctrl-C to quit...')
print('| {0:>4} | {1:>4} | {2:>4} | {3:>4} | {4:>4} | {5:>4} | {6:>4} | {7:>4} |'.format(*range(8)))
print('-' * 57)
while True:
values = [0]*8
for i in range(8):
values[i] = mcp.read_adc(i)
print('| {0:>4} | {1:>4} | {2:>4} | {3:>4} | {4:>4} | {5:>4} | {6:>4} | {7:>4} |'.format(*values))
time.sleep(0.5)
并且在使用命令从我的 RPi4 调用特定程序后:
sudo python3 adc.py
控制台向我显示此消息:
Traceback (most recent call last):
File "adc.py", line 7, in <module>
mcp = Adafruit_MCP3008.MCP3008(spi=SPI.SpiDev(SPI_PORT, SPI_DEVICE))
File "/usr/local/lib/python3.7/dist-packages/Adafruit_GPIO-1.0.4-py3.7.egg/Adafruit_GPIO/SPI.py", line 46, in __init__
SystemError: error return without exception set
真的很烦,因为我想不通问题出在哪里。我是 Python 的新手,但我读到它与 C-2-Python 解释器有关。你能帮我解决这个问题吗?它用于使用 MCP3008 ADC 读取光电二极管输入。非常感谢!
已解决!新的 RasPi OS 不再支持我使用的库。如果您遇到同样的问题,则必须使用此命令 sudo pip3 install adafruit-circuitpython-mcp3xxx
而不是 git clone https://github.com/adafruit/Adafruit_Python_GPIO.git
。当然,您必须执行一些其他步骤才能实现 MCP3008 的全部功能。如需更多信息或步骤,请随时与我联系。如果我知道怎么做,我会提供帮助。