这是我运行时遇到的问题:
AttributeError: module 'serial' has no attribute 'Serial'
代码是:
import serial
connection = serial.Serial('COM3', 115200)
while True:
data = connection.readline()
print(data)
我原以为它会运行。
也许尝试这样做:
from serial import*
这会导入模块中的所有函数,因此它可能会起作用