pySerial is a Python module that encapsulates the access for the serial port. It provides backends for different platforms and Python implementations.
0
votes
1answer
14 views
pyserial bluettoth working only at 9600 baudrate
I'm working on an arduino sending a sensor value on Serial.
Everything works great by USB.
But when we use the bluetooth module we can't go any further than 9600 baudrate.
At more than 9600 baudrate ...
0
votes
0answers
2 views
Pyserial hangs on close
Trying to get a couple of usb to serial adapters working - I have them setup from one usb port of my mac to the other usb - with null modem so they can talk together - which they do fine.
When I ...
-1
votes
0answers
10 views
PySerial an access issue
I have a pyserial issue, very simple strip down code here but I still cant get a positive result - This code gives the error, SerialException: could not open port COM6: [Error 5] Access is denied.
...
0
votes
1answer
13 views
Python 3.3:cx_freeze & pyserial: cannot import traceback module
I'm newbie in cx_freeze. I'm triing to make an executable from python 3.3 script that uses "time", "serial" and "tkinter".
Cx_freeze run without any errors, but starting the exe file is resulting ...
0
votes
1answer
37 views
pySerial - UnboundLocalError: local variable 'serial_port' referenced before assignment
I was given this program to keep a log file of what the console prints out of a usb connected device (wireless sensor). It produces the error:
UnboundLocalError: local variable 'serial_port' ...
0
votes
1answer
36 views
Serial data logging using Arduino and pySerial
I have a temperature sensor (LM35) interfaced with an Arduino board and my sketch is able to log values to the serial port, say /dev/ttyACM0 in Ubuntu, and I was able to install pySerial and log the ...
0
votes
1answer
54 views
print the data on window screen and then clear the window screen before printing other data.in python
I can receive serial data and can print on the window screen(Tkinter top).when i receive serial data again, this newly received serial data should start printing on the window screen by wiping out ...
0
votes
3answers
70 views
Serial Communication one to one
If this is a stupid question, please don't mind me. But I spent some time trying to find the answer but I couldn't get anything solid. Maybe this is a hardware question, but I figured I'd try here ...
1
vote
1answer
99 views
python code for serial data to print on window.
I am quite new to python and pyserial. My pc was installed with python 2.7.4 with pyserial and I want to print the serially received data on a seperate window on my pc. First the window has to be ...
0
votes
0answers
17 views
Using xonxoff-flow control with pyserial
I am currently trying to interface with a somewhat old old model of a HP-printer which gives me two possible methods of flow-control: No flow control at all or software-based flow control (XON/XOFF).
...
0
votes
0answers
37 views
Hang reading a serial port with Python and pyserial
Correction -- I'm using the first tty -- not 5 as the old version stated.
I'm in the process of writing a program to allow a TS-4200-8160 embedded arm computer to respond to serial data. My first ...
2
votes
0answers
44 views
OSX crashing on Bluetooth serial open/close cycle
I have a Bluetooth device (a RN-42) paired with a Mac (Macbook Pro 2010 model, Mountain Lion). I am opening a serial port against it at regular intervals.
What happens is that I end up with a kernel ...
2
votes
0answers
76 views
Python code to receive variable data continuously from serial port
I am new to python and pyserial. I had python 2.7.4 and pyserial-2.5 win32 installed in my PC. Here i am using micro controller device as Master(primary) and my pc as a slave(secondary). Here every ...
0
votes
1answer
64 views
serial communication using python windows 8 [closed]
I am trying to talk to a stepper motor, using python.
I am using eclipse to code, and when I write the following code:
import serial
it shows:
import serial
ImportError: No module named 'serial'
I ...
1
vote
2answers
58 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
111 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
106 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
51 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
49 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
81 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
76 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
3answers
79 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
20 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
117 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
90 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
60 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 ...
0
votes
0answers
127 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
339 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
80 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
96 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
312 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
164 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
39 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
62 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
114 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
137 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
20 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
376 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
113 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
225 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
253 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 ...
0
votes
1answer
74 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
144 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
3answers
547 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
238 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
441 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
168 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
209 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
156 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
163 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 ...


