如何通过串口接听与python的电话?

时间:2018-03-20 22:11:37

标签: python phone-call

我一直在尝试使用串口接听电话,但我只得到'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.

1 个答案:

答案 0 :(得分:0)

您只需要发送ACK字符即可。

ser.write(b'\x06')