我一直在尝试使用串口接听电话,但我只得到'RING\r\n'
并且过了一段时间'NO CARRIER'
。有没有接听电话的命令?
import serial
ser = serial.Serial()
ser.port='COM3'
ser.baudrate=9600
ser.open()
while True:
lectura = ser.readline()
if lectura == "RING": ser.write("OK") # To answer the call.
答案 0 :(得分:0)
您只需要发送ACK字符即可。
ser.write(b'\x06')