Top "Pyserial" questions

pySerial is a Python module that encapsulates the access for the serial port.

Full examples of using pySerial package

Can someone please show me a full python sample code that uses pyserial, i have the package and am wondering …

python modem pyserial
Python Serial: How to use the read or readline function to read more than 1 character at a time

I'm having trouble to read more than one character using my program, I can't seem to figure out what went …

python serial-port readline pyserial
Listing available com ports with Python

I am searching for a simple method to list all available com port on a PC. I have found this …

python pyserial
Reading serial data in realtime in Python

I am using a script in Python to collect data from a PIC microcontroller via serial port at 2Mbps. The …

python python-2.7 serial-port pyserial
Python: Writing to and Reading from serial port

I've read the documentation, but can't seem to find a straight answer on this. I have a list of all …

python serial-port pyserial
pySerial write() won't take my string

Using Python 3.3 and pySerial for serial communications. I'm trying to write a command to my COM PORT but the write …

python pyserial
pyserial for Python 2.7.2

I'm new to Python. According to the internets I was looking for the module pyserial after receiving this error: ImportError: …

python python-module pyserial windows64
pyserial - How to read the last line sent from a serial device

I have an Arduino connected to my computer running a loop, sending a value over the serial port back to …

python serial-port arduino pyserial
PySerial non-blocking read loop

I am reading serial data like this: connected = False port = 'COM4' baud = 9600 ser = serial.Serial(port, baud, timeout=0) while …

python python-3.x nonblocking pyserial
python3 pySerial TypeError: unicode strings are not supported, please encode to bytes:

In Python 3 I imported the pySerial library so I could communicate with my Arduino Uno by serial commands. It worked …

python-3.x arduino pyserial