Tagged Questions
The pyserial tag has no wiki summary.
9
votes
3answers
874 views
pySerial works fine in Python interpreter, but not standalone
Good morning! Recently I bought an Arduino board to make sort of "light control" in my room. Here is the code of the firmware I wrote:
int control = 0;
int pin = 0;
void setup()
{
...
8
votes
1answer
197 views
Is there a way to “compile” Python code onto an Arduino (Uno)?
I have a robotics type project with an Arduino Uno, and to make a long story short, I am experimenting with some AI algorithms. However, I need to implement some high level matrix algorithms that ...
7
votes
2answers
294 views
How to send a value from Arduino to Python and then use that value
I am in the process of building a robot that is remote controlled using Python to send control messages via the Internet through a simple GUI.
I have gotten part of my code working pretty well, the ...
6
votes
2answers
177 views
PySerial not talking to Arduino
Python version: 2.6.6
PySerial version: 2.5
Arduino board: Duemilanove 328
I have written some code to simulate some hardware I'm working with and uploaded it to the Arduino board. This code works. ...
4
votes
6answers
232 views
Python/PySerial bit operator on string
I'm using PySerial (Python 2.7) to read information from a device like this:
buffer += ser.read(3)
Now I have three bytes in buffer (i.e. 0xAE0259) which is of type str. Since I'm new to Python, I'm ...
4
votes
3answers
1k views
Echo Program in between Arduino and Python
I want to send some data to an Arduino through pyserial in Python. All I want to the Arduino to do is read the variable length string data from the serial port, and write it back so that Python can ...
3
votes
3answers
216 views
pyserial/python and real time data acquisition
I have an infrared camera/tracker with which I am communicating via the serial port. I'm using the pyserial module to do this at the moment. The camera updates the position of a tracked object at the ...
3
votes
1answer
102 views
What pin does the pySerial interrupt when running?
Since pySerial is a serial communication technique, will it then be interrupting a pin on the Arduino board once there is some data to be given to the Arduino board?
Which pin does it interrupt to ...
3
votes
2answers
363 views
Control a specific pin on the Arduino Uno board using pyserial
I have a python code that sends in a pattern, in which a light has to blink in. (say eg. 101010. pattern may vary every time the code is run). when it is executing this infinitely i want an interrupt( ...
3
votes
1answer
134 views
Python web app - synchronized serial access
I'm a java intermediate developer, python newbie and web-services uber newbie.
As a learning experience, I'm trying to realize a RESTful web service in python to remotely control a simple on/off light ...
3
votes
4answers
1k views
Serial ports on Windows or Ubuntu VBox to talk to Arduino from Python
I have an Arduino microcontroller listening on COM3. Using the arduino IDE and the Serial monitor works fine to send and receive data.
I would like to send and receive data from Python, but it's not ...
3
votes
4answers
645 views
PySerial App runs in shell, by not py script
I have a very simple python script that uses pySerial to send data over the serial port to my arduino. When I execute this line-by-line in the python shell, it works just fine, but when I put it in a ...
3
votes
3answers
994 views
Virtual Serial Device in Python?
I know that I can use e.g. pySerial to talk to serial devices, but what if I don't have a device right now but still need to write a client for it? How can I write a "virtual serial device" in Python ...
2
votes
1answer
117 views
Kill process that raises Device or resource busy: '/dev/ttyUSB0'?
I connect to my Arduino board with the following Python code.
device=glob.glob("/dev/ttyUSB*")[0]
time.sleep(1)
arduino = serial.Serial(device, 115200, timeouy=5)
It generally works, but somehow ...
2
votes
1answer
176 views
Passive Serial Port Monitor
I'm using pyserial to open two ports, and then write to each what I read from the other. I then have a physical com port connected to one of these ports and a virtual com port connected to the other. ...
2
votes
1answer
417 views
Python socket server and client, keeps losing connection
I am expanding on a GUI program for a remotely controlled robot. The idea is to program a simple GUI client in Python that connects to a remote server, also written in Python. The client would send ...
2
votes
3answers
856 views
Writing to COM port on C# or python
im trying to write a string to a COM4 which is a usb-serial adapter using Visual Studio C# and got the following error:
Access to the port 'COM4' is denied.
My program is extremely simple:
...
2
votes
1answer
427 views
Using pySerial to connect to a non-COM port
In Hyperterminal I am able to connect to a serial port called "X64-CL_iPro_1_Serial_0" where I am able to send/receive ASCII text to a camera. However when I try to connect to the same port with ...
2
votes
3answers
4k views
How can I fix “[Error 6] The handle is invalid.” with PySerial
I'm trying to connect to my phone from my Windows 7 PC using PySerial with the following code:
import wmi
import serial
c = wmi.WMI()
modem = c.query("SELECT * FROM Win32_POTSModem").pop()
ser = ...
2
votes
3answers
1k views
Python/PySerial and CPU usage
I've created a script to monitor the output of a serial port that receives 3-4 lines of data every half hour - the script runs fine and grabs everything that comes off the port which at the end of the ...
2
votes
6answers
11k views
pyserial - How to Read Last Line Sent from Serial Device
So I have an Arduino connected to my Windows XP computer. It's just running a loop, sending a value over the serial port back to the computer every 100ms.
I want to make a Python script that will ...
2
votes
3answers
2k views
Getting an input/output error from python with pyserial
I have a python script that writes data packets to an arduino board through pyserial.
Sometimes while writing the code to the board pyserial raises an input/output error with errno 5
Some research ...
2
votes
2answers
2k views
python monitoring over serial port
Good afternoon,
I would ask some suggestion about the best way to monitor events over the serial port.
I'm using PySerial to write "commands" over the serial port towards some devices and
I would ...
2
votes
1answer
1k views
pyqt4 and pyserial
I want to do an app constantly watching the serial port and changing the user interface according to the input received from the port. I've managed to read lines from the port with pyserial under ...
1
vote
1answer
33 views
Pyserial testing
I am new to Pyserial and Hardware area. I am trying to run the sample applications given in http://pyserial.sourceforge.net/shortintro.html#opening-serial-ports
import serial
ser = serial.Serial(0) ...
1
vote
2answers
208 views
live plotting using pyserial and matplotlib
I can capture data from serial device via pyserial, at this time I can only export data to text file, the text file has format like below, it's have 3 columns
>21 21 0
>
>41 41 0.5
>
...
1
vote
1answer
82 views
Linux serial port buffer not empty when opening device
I have a system where I am seeing strange behavior with the serial ports that I don't expect. I've previously seen this on occasion with usb-to-serial adapters, but now I'm seeing it on native serial ...
1
vote
1answer
88 views
How can I communicate with a 3G modem via pySerial while it is connected?
I'm running Ubuntu 11.04 and a ZTE 3G modem.
The modem is dialed with WvDial
When the modem is not in use by WvDial I can send AT commands to the modem, and get information like signal strength:
...
1
vote
1answer
127 views
PySerial delay in reading line from Arduino
I'm using an arduino uno with the basic "DigitalReadSerial" setup as outlined here: http://arduino.cc/en/Tutorial/DigitalReadSerial
If i use the serial monitor included with the arduino IDE, it ...
1
vote
1answer
162 views
Reading real time values with pySerial while plotting
So here is the deal, I have a module which sends out data over the serial port at 9600 baud and I am using the matplotlib to plot that data in real time. I wrote this code
#! python
############ ...
1
vote
1answer
87 views
pySerial receives as ASCII how to convert into integer?
I am using pySerial to talk to an MSP430 module. This module is transmitting over serial and I am using pySerial to read (as in com.read(20) ). But the type of what pyserial receives is ascii. So when ...
1
vote
4answers
105 views
Python script to calculate the time between 2 successive packets received over the serial port
I am debugging my code for which I need to write a python script that can read data being sent over the serial port through bluetooth and calculate the time elapsed between each successive packet.I ...
1
vote
0answers
106 views
pySerial buffer won't flush
I'm having a problem with serial IO under both Windows and Linux using pySerial. With this code the device never receives the command and the read times out:
import serial
ser = ...
1
vote
3answers
242 views
PySerial: How to send Ctrl-C command on the serial line
I'm automating a configuration process for an embedded board. To enter the setup screen I need to send "Ctrl-C" command.
This is NOT to interrupt a process I'm running locally, KeyboardInterrupt ...
1
vote
0answers
122 views
How to open busy serial port (share port) with pyserial
Is it possible open serial port which already in use?
and send data to it
Or create new one and share it for few applications?
I'm trying to avoid use of port pairs (created by windows driver)
1
vote
3answers
209 views
pySerial: opening multiple ports at once
EDIT: Found the problem: I tried referencing a variable, but mixed up its name, so instead I declared a new variable. Turns out pySerial is not limited to one open serial point at a time.
I'm trying ...
1
vote
2answers
332 views
python: parsing strings from serial.read()
I'm communicating between a python script on a PC and embedded c. I have the following issue:
From the mcu (embedded c), I'm sending the binary representation of integers and floats. Using Br@y's ...
1
vote
1answer
362 views
pyserial enumarate ports
I need list or enumerate of existing serial ports,
Till now I was using this method enumerate_serial_ports(), but its not working with windows 7. Do you know some alternative how can I find out ...
1
vote
2answers
236 views
Converting PySerial Readline From String to Binary
I'm sending the bytestring 0x0F, 0x07, 0x55, 0x55, 0x55 from a PIC microcontroller.
Over the serial port with Python I am using the readlines() command in PySerial. I receive:
['\x0f\x07UUU']
This ...
1
vote
1answer
274 views
Receive multiple values via pyserial and display in Python GUI
I am trying to receive data using serial communication in Python, which I can do, but I need to improve my code.
I am sending a "packet" from Arduino that is in the form of "&4,25/n" with the key ...
1
vote
3answers
479 views
Problem sending Bytes with pySerial and socat
I want to send some bytes via pySerial. I created virtual serial ports with socat for testing purposes:
socat PTY,link=./ptyp1,b9600 PTY,link=./ptyp2,b9600
Here's the python code:
ser = ...
1
vote
1answer
426 views
pyserial connection works, but how to handle output with ser.readline()?
I can connect to an energy-meter (Baudrate 300!) and the logfile with 228 lines comes slowly in.
line = ser.readline(eol='!')
print line
If I use the above code, the complete logfiles is shown.
...
1
vote
2answers
227 views
'bytesize' in PySerial module
I want to send messages through the serial port using PySerial. One of the parameters for the serial constructor is 'bytesize'. I have been trying serial.SEVENBITS and serial.EIGHTBITS and haven't ...
1
vote
1answer
328 views
How to open a serial port with pyserial?
I am trying to open a serial port with python. This is on Ubuntu. I import the openinterface.py and enter in this
ser = openinterface.CreateBot(com_port = "/dev/ttyUSB1", mode="full")
I get an ...
1
vote
2answers
589 views
python serial port
I want to communicate with my serial port in python.....i installed pyserial,,,and uspp for linux....still when i run the code..
import serial
ser = serial.Serial('/dev/pts/1', 19200, timeout=1)
...
1
vote
2answers
173 views
signal.alarm() handler causing problem with pyserial
so i have a motion sensor connected to an avr micro that is communicating with my python app via usb. im using pyserial to do the comm. during my script i have an infinate loop checking for data from ...
1
vote
2answers
598 views
Twisted's Serialport and disappearing serial port devices
I'm using twisted.internet.serialport to have my program be continuously connected to a device on a serial port.
Unfortunately my serial port is just a usb device, which means it can be disconnected ...
1
vote
1answer
370 views
PySerial and IronPython - get strange error
I have a device connected to COM31. And the code that I need to create a serial connection looks very simple
port = 31
trex_serial = serial.Serial(port - 1, baudrate=19200, ...
1
vote
1answer
679 views
How to send file to serial port using kermit protocol in python
I have device connected through serial port to PC. Using c-kermit I can send commands to device and read output. I can also send files using kermit protocol.
In python we have pretty nice library - ...
0
votes
2answers
45 views
Python, PySerial and cx-freeze
Trying to learn cx-freeze. I have a python program that I am trying freeze to exe.
I use PySerial and no matter how I try to include win32 nothing seems to help. I use Python 3.2 and win7.
I have ...