标签: python pyserial
from serial import serial ser = serial.Serial('/dev/ttyACM0', baudrate = 9600, timeout=1) while 1: Data = ser.readline().decode('ascii') print(Data)
错误:AttributeError:' module'对象没有属性' Serial'