我的代码有问题,我已导入序列但有错误
AttributeError:'module
'对象没有属性“Serial
”。我的脚本名为rc_control_test.py
import serial
import pygame
from pygame.locals import *
class RCTest(object):
def __init__(self):
pygame.init()
self.ser = serial.Serial('COM6', 9600)
self.send_inst = True
self.steer()
答案 0 :(得分:0)
确保卸载序列,并且仅安装pyserial。为我工作。
答案 1 :(得分:0)
使用python3.6运行文件为我解决了这个问题。
$ python3.6 file.py
祝你好运。