我需要将06作为/ x06写入串口以给出机器的确认,我的代码如下所示,需要进行哪些校正
import time
import serial
ser = serial.Serial(port='COM1',baudrate=9600,parity=serial.PARITY_NONE,stopbits=serial.STOPBITS_ONE,bytesize=serial.EIGHTBITS,timeout=1)
counter=0
while 1:
ser.write('06')
time.sleep(1)
counter += 1
x=ser.readline()
print x