2009-03-24 32 views

Respuesta

44
import serial 
ser = serial.Serial(0) # open first serial port 
print ser.portstr  # check which port was really used 
ser.write("hello")  # write a string 
ser.close()    # close port 

uso http://pyserial.wiki.sourceforge.net/pySerial para más ejemplos

+0

Ese vínculo se ha roto. Nuevo: http://pythonhosted.org/pyserial/ – MarredCheese

1

No he utilizado PySerial pero en base a la documentación de la API en http://pyserial.wiki.sourceforge.net/pySerial parece una interfaz muy agradable. Puede valer la pena verificar dos veces la especificación de los comandos AT del dispositivo/radio/lo que sea que esté tratando.

Específicamente, algunos requieren algún período de silencio antes y/o después del comando AT para que entre en modo comando. He encontrado algunos que no les gusta las lecturas de la respuesta sin un poco de retraso primero.

76

Blog post Serial RS232 connections in 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 
+8

Recibí un error 'serial.serialutil.SerialException: Port ya está abierto' al ejecutar este código. No estoy seguro de esto, pero creo que el puerto serie se abre automáticamente cuando se define explícitamente como lo ha hecho con 'ser'. Después de comentar la línea 'ser.open()' funcionó. – user3817250

+0

Este comentario es el salvador. –

+1

@ user3817250: Alternativamente, simplemente haga un caso de if alrededor del 'ser.open()' –

20

http://www.roman10.net/serial-port-communication-in-python/comment-page-1/#comment-1877

#!/usr/bin/python 

import serial, time 
#initialization and open the port 

#possible timeout values: 
# 1. None: wait forever, block call 
# 2. 0: non-blocking mode, return immediately 
# 3. x, x is bigger than 0, float allowed, timeout block call 

ser = serial.Serial() 
#ser.port = "/dev/ttyUSB0" 
ser.port = "/dev/ttyUSB7" 
#ser.port = "/dev/ttyS2" 
ser.baudrate = 9600 
ser.bytesize = serial.EIGHTBITS #number of bits per bytes 
ser.parity = serial.PARITY_NONE #set parity check: no parity 
ser.stopbits = serial.STOPBITS_ONE #number of stop bits 
#ser.timeout = None   #block read 
ser.timeout = 1   #non-block read 
#ser.timeout = 2    #timeout block read 
ser.xonxoff = False  #disable software flow control 
ser.rtscts = False  #disable hardware (RTS/CTS) flow control 
ser.dsrdtr = False  #disable hardware (DSR/DTR) flow control 
ser.writeTimeout = 2  #timeout for write 

try: 
    ser.open() 
except Exception, e: 
    print "error open serial port: " + str(e) 
    exit() 

if ser.isOpen(): 

    try: 
     ser.flushInput() #flush input buffer, discarding all its contents 
     ser.flushOutput()#flush output buffer, aborting current output 
       #and discard all that is in buffer 

     #write data 
     ser.write("AT+CSQ") 
     print("write data: AT+CSQ") 

     time.sleep(0.5) #give the serial port sometime to receive the data 

     numOfLines = 0 

     while True: 
      response = ser.readline() 
      print("read data: " + response) 

     numOfLines = numOfLines + 1 

     if (numOfLines >= 5): 
      break 

     ser.close() 
    except Exception, e1: 
     print "error communicating...: " + str(e1) 

else: 
    print "cannot open serial port "