Descargar pySerial ( https://pypi.python.org/pypi/pyserial )
wget http://pypi.python.org/packages/source/p/pyserial/pyserial-2.7.tar.gz?raw=true -O pyserial-2.7.tar.gz
tar -xzf pyserial-2.7.tar.gz
cd pyserial-2.7
sudo python setup.py install
Puede verificar la disponibilidad de ttyUSB con la línea
ls -ltr /dev|grep -i ttyUSB
Para ver la salida en serie, use
tail -f /dev/ttyUSB<NUMBER FROM ABOVE>
Para romper crtl + c
Crea un archivo testserial.py pega este código
#!/usr/bin/python
from time import sleep
import serial
# Establish the connection on a specific port
ser = serial.Serial('/dev/ttyUSB0', 9600)
x = 1 while True:
print ser.readline() # Read the newest output
x += 1