pySerial is a Python module that encapsulates the access for the serial port. It provides backends for different platforms and Python implementations.
1
vote
2answers
29 views
python and serial. how to send a message and recieve an answer
I have to send ZANE:1:00004:XX_X.X_XXXX_000XX:\r\nvia serial communication with python.
here is my code:
import serial
ser = serial.Serial('/dev/cu.usbserial-A901HOQC')
ser.baudrate = 57600
msg = ...
3
votes
1answer
58 views
pySerial program doesn't read serial correctly
I have a problem using pySerial, and I don´t know from where to start looking for.
I have a 64 bits Windows Seven OS, with Python 2.7.5 (32 bits), and pySerial and Arduino (Arduino working correctly) ...
0
votes
1answer
60 views
Sending binary data over a serial connection with pyserial
I want to preface this with noting that I am really lost right now, so there may be things I say that don't make sense because I have no idea what I'm talking about. Feel free to dissect my question ...
1
vote
0answers
37 views
SerialTimeoutException crashes script
This script crashes due to a serial timout exception after an extended period of time. It's been making it to 5000 loops or so before it has the following error:
Traceback (most recent call last):
...
-3
votes
1answer
25 views
Python: Determine assigned serial port my hardware connected to [closed]
Microcontroller interfacing with Windows PC via USB CDC creating virtual serial port. Windows assign port number randomly depend on availability, USB port and differs from computer to computer. The ...
0
votes
0answers
49 views
GSM modem doesn't respond on at+cmgl command
I'm writing a linux program which interact with gsm modem through AT-commands. Sometimes the modem respond on at+cmgl="all" command and return sms messages, sometimes the modem doesn't respond on this ...
0
votes
1answer
31 views
Pyserial string to byte encoding to write to microcontroller
I'm trying to communicate between my PC and a microcontroller (MC). My microcontroller will read using getchar() until 4 characters have been read or it bumps into the characters '\0', '\', or '\r'.
...
0
votes
1answer
30 views
pySerial 2.6: specify end-of-line in readline()
I am sending commands to Eddie using pySerial. I need to specify a carriage-return in my readline, but pySerial 2.6 got rid of it... Is there a workaround?
Here are the Eddie command set is listed on ...
0
votes
1answer
17 views
type error occurred using buffer memoryview
I wanted to do a program which gets data from serial port which start and stop bit will be * and #. Data received will be in *1234567# this form. But it says my 'type' object is not subscriptable. ...
3
votes
2answers
101 views
Losing data in received serial string
So part of a larger project needs to receive a long hex character string from a serial port using a raspberry pi. I thought I had it all working but then discovered it was losing a chunk of data in ...
0
votes
1answer
77 views
Controlling MDrive 23 with Python under Linux
MDrive 23 motor takes commands from a terminal, and I got it to work with screen program:
screen /dev/ttyUSB0
Is this is called a serial terminal? I'm unfamiliar with the details of the connection, ...
1
vote
1answer
55 views
Understanding characters received from Arduino
I have an Arduino board sending data through a serial port and a Python piece of code reading that data. The Arduino board just sends the temperature it reads from a TMP36 sensor and when I check the ...
-2
votes
0answers
42 views
Using ultrasonic sensor with pandaboard
I am new to pandaboard and i don't know how to control its pins well to connect an ultrasonic with them .
I searched the web and i found that i can send the digital pulses required to the ultrasonic ...
0
votes
0answers
87 views
pyserial echo itself and response slow under Python 3.3 and Windows 7 64bit
I use pyserial under Python 3.3 on Windows 7 64-bit .
And I want to build a tiny small terminal such as , putty , pietty .
I encounter 3 major problem ,
**(1)When I send the command by ...
0
votes
2answers
199 views
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 cant seem to figure out what went wrong with my program, as i'm very new to python.
import serial
ser = serial.Serial(
...
2
votes
2answers
70 views
Why does pyserial say I've given 12 arguments when there are 11?
I am using pyserial to open a python connection:
self.fpga = serial.Serial(self.fpgaport, 115200, serial.EIGHTBITS, serial.PARITY_NONE, serial.STOPBITS_ONE, self.fpgapollinterval, False, False, None, ...
1
vote
0answers
75 views
Serial communication read line C++
I want to read a line from serial with Symbian C++ but to do that I have to continue reading into a buffer until I reach "/n". I have no idea how to do this though. This is actually a Python project ...
0
votes
1answer
161 views
Using pySerial with Python 3.3
I've seen many code samples using the serial port and people say they are working codes too. The thing is, when I try the code it doesn't work.
import serial
ser = serial.Serial(
port=0,
...
0
votes
0answers
110 views
Write Timeout issue with Serial Modem AT Command port and PySerial
I am using Python serial.serialwin32.Serial() to communicate with AT Command Port of Modem. But after a few commands, it starts throwing "Write Timeout" exceptions while writing. Even on closing and ...
0
votes
0answers
32 views
Serial input ok but output queue fails
I'm using Python 2.7, pySerial under windows 7.
I have 8 devices, they are connected to my PC via Virtual COM port (Silicon Labs CP210x USB to UART Bridge), I'm testing them With multiprocessing all ...
0
votes
0answers
51 views
Sharing pyserial serial object using multiprocessing manager namespace
Is it possible to share serial.Serial object between processes?
Maybe anybody can suggest any usefull aproach?
The sample code will show the problem:
from time import sleep
from multiprocessing ...
1
vote
2answers
86 views
How to send data from Windows to embedded linux over USB
My setup looks like this: A 64-bit box running Windows 7 Professional is connected to a Beaglebone running Angstrom Linux.
I'm currently controlling the beaglebone via a putty command line on the ...
0
votes
0answers
114 views
multiple access to serial communication python - arduino
I'm trying to write a python program that starts a serial connection to an Arduino (using the library pyserial) and send data through it when it receives a command from a caller. Multiple clients can ...
0
votes
0answers
16 views
Serial output of ascii string giving higher voltage for more binary zeroes
I'm controlling a motor bridge via a serial port by using the voltage from the pins on the serial plug directly.
This would normally only give me the RTS and DTR pins to use (controllable through ...
0
votes
1answer
294 views
Trouble send hex (Modbus Packet) via pyserial
I am having some trouble with sending the following hex codes 0x01 0x03 0x00 0x00 0x00 0x01 0x0a 0x84 to a serial device (Voltage Sensor) which will return an int for current voltage using Python and ...
0
votes
1answer
99 views
PySerial can read but not write
I'm trying to use PySerial to connect to an FTDI FT232R chip. I have verified communication with my RealTerm and, using RealTerm, can both send and receive data. However, my implementation in Python ...
2
votes
2answers
143 views
Disable DTR in pyserial from code
I'm trying to use pyserial to send data to an arduino. But when I open the COM port it sets DTR low and resets the board. However, I have my arduino code setup such that I have to put it into serial ...
0
votes
2answers
215 views
Python script working with Arduino won't read data correct
I've got a problem with my Python script. It's working but something is wrong. I'm newbie in Python so I can't find any solution :(
My script is connecting via pySerial to Arduino board, and read ...
1
vote
0answers
70 views
Pyserial and Xbee, opertting system incompatability
I am running a script that connects to an Xbee module, which sends and receives data from another Xbee.
I wrote the original script on Windows and it works fine. However when I run it on Mac OS X the ...
0
votes
1answer
70 views
Incomplete string received from slot with PySide
I have an application which sends data over the serial port (using pyserial) to an external module which answers back upon reception. I have a thread that monitors the incoming data and when there ...
0
votes
1answer
121 views
ser.write not passing string to arduino uno using pyserial and USB
A program is running on the arduino uno which reads incoming strings and then calls a function based on what the string is.
The program works when I use arduino's serial monitor to pass the string. ...
0
votes
2answers
392 views
How to open serial port programatically?
I have an Arduino connected to Raspberry Pi running Arch.
The arduino has not much to do, but to constantly print some sensor data:
#include<Arduino.h>
void setup() {
Serial.begin(9600);
...
1
vote
1answer
183 views
Feedparser - KeyError: 'fullcount'
I have tried to follow this guide. It is about making a physical gmail notifier. When I entered the same code it found an error:
Traceback (most recent call last):
File ...
1
vote
1answer
352 views
When I flush the serial buffer in Python, it stops reading
I have programmed an Arduino to send data serially to my computer. pySerial is reading correctly from the serial, but since I always want to have the most up-to-date information, I thought I could ...
0
votes
1answer
165 views
Arduino to python serial read split
Hi I am staring out and have cracked sending multiple bits of information from Python to my Arduino. I now would like to send information from my Arduino to python I have looked at may examples but ...
1
vote
1answer
161 views
ASCII text sent with pySerial becomes appended at end device
I am trying to send two lines of ASCII text to a device, but the device reads these two lines as one line appended. Is it matter of delay or wrong end char? I cant really seem to see the problem.
...
0
votes
1answer
118 views
How to build and send hex commands to TV
I have an NEC PX-42VM5HA plasma tv that I am trying to control with the connected computer. I have the data sheet that shows all the codes to control the tv and the protocol information. I am unsure ...
0
votes
0answers
156 views
alternative to PySerial while openings serial ports on Debian Linux with python
I am having issues with PySerial. I am getting OSError: [Errno 11] Resource temporarily unavailable within PySerial's serialposix.py. I am wondering if there is any alternative way of reading data ...
0
votes
0answers
101 views
Safely read from multiple Serial Ports with PySerial while using Multiprocessing
I am trying to read several serial ports using PySerial using mutltiple processes with Multiprocessing module. However I am getting the following error:
File ...
0
votes
1answer
60 views
How to ensure that it is actually opened the serial port
I need to open a port to the serial device but if it has not been opened or there is an exception it must continuously try to open the door until it opens. Python 2.7.3 after a while I get this ...
2
votes
2answers
452 views
Blinking an LED with an Arduino and pySerial
I feel really silly for asking this, but I've been shocked at my inability to find the simplest example I can imagine for talking to an Arduino over Serial. I have a connection set up, and I ...
2
votes
2answers
72 views
pySerial 2.6 not available on pySerial sourceforge website [closed]
Does anyone know why the PySerial website states that the documentation is for PySerial 2.6, but you can't go to the Source Forge website that it directs you to and download anything newer than 2.5?
0
votes
1answer
386 views
PySerial on Raspberry-Pi give me [Errno 5] and [Errno 11]
I'm trying to set up an IR Receiver Breakout (https://www.sparkfun.com/products/8554) to my Raspberry Pi. I connected the 'out' on the receiver to the 'RXD' pin on the py and im using PySerial to read ...
0
votes
0answers
110 views
pyserial's readline not able to read last some lines when the output has many lines
I am trying to use pyserial to talk interact with a board and I am sending some commands and waiting for their reply am using this piece of code for waiting for => prompt
# Waits till it finds the ...
0
votes
1answer
140 views
pySerial sends ASCII data but recieving device does not respond to it
I have been trying to get pySerial to send commands to a device (Weight scale, and mass flow controller) both use ASCII format, and both do not respond to comands sent. However I can easely control ...
1
vote
1answer
131 views
How does PySerial crash Mac OS X?
I managed to reproducibly freeze OS X (well, keyboard and mouse input at least) with a silly misuse of PySerial. Keyboard and mouse cease responding altogether though the power button works. I ...
2
votes
0answers
202 views
How do I recover from a serialException using pySerial
I have an application that reads and transmits data to a device connected via USB. I'm using pySerial to facilitate this communication. Everything works fine until the USB cable is unplugged from ...
0
votes
1answer
128 views
Undefined variable: SerialException
I am using the pySerial library to have a Python script log data from an Arduino. I am trying to handle the SerialException when the script cannot connect to the port you provided, and Eclipse says ...
0
votes
2answers
126 views
Errors when connecting to router with python code
I am trying to connect to some router using the above code and I am using juniperj2320.py module and in test file I have
am using code base from this ...
0
votes
2answers
392 views
Sending and reading ASCII values in pySerial
I am trying to communicating with a scale that does communiation in ASCII format useing python and pySerial. I have no experience how ever using ASCII format. So I have basic questions.
How would I ...

