Alguém pode me mostrar um código de exemplo completo do python que usa pyserial , eu tenho o pacote e gostaria de saber como enviar os comandos AT e lê-los de volta!
96
Postagem de blog Conexões RS232 serial em Python
import time
import serial
# configure the serial connections (the parameters differs on the device you are connecting to)
ser = serial.Serial(
port='/dev/ttyUSB1',
baudrate=9600,
parity=serial.PARITY_ODD,
stopbits=serial.STOPBITS_TWO,
bytesize=serial.SEVENBITS
)
ser.isOpen()
print 'Enter your commands below.\r\nInsert "exit" to leave the application.'
input=1
while 1 :
# get keyboard input
input = raw_input(">> ")
# Python 3 users
# input = input(">> ")
if input == 'exit':
ser.close()
exit()
else:
# send the character to the device
# (note that I happend a \r\n carriage return and line feed to the characters - this is requested by my device)
ser.write(input + '\r\n')
out = ''
# let's wait one second before reading output (let's give device time to answer)
time.sleep(1)
while ser.inWaiting() > 0:
out += ser.read(1)
if out != '':
print ">>" + out
serial.serialutil.SerialException: Port is already open
ao executar este código. Não tenho certeza sobre isso, mas acredito que a porta serial é aberta automaticamente quando é explicitamente definida como você fez comser
. Depois de comentar aser.open()
linha funcionou.ser.open()
use https://pythonhosted.org/pyserial/ para mais exemplos
fonte
http://web.archive.org/web/20131107050923/http://www.roman10.net/serial-port-communication-in-python/comment-page-1/
fonte
Não usei pyserial, mas com base na documentação da API em https://pyserial.readthedocs.io/en/latest/shortintro.html , parece uma interface muito boa. Pode valer a pena verificar a especificação dos comandos AT do dispositivo / rádio / o que quer que você esteja lidando.
Especificamente, alguns requerem algum período de silêncio antes e / ou depois do comando AT para entrar no modo de comando. Eu encontrei alguns que não gostam de ler a resposta sem algum atraso primeiro.
fonte