About 51 results
Open links in new tab
  1. python - Full examples of using pySerial package - Stack Overflow

    Can someone please show me a full python sample code that uses pyserial, i have the package and am wondering how to send the AT commands and read them back!

  2. How to read and write from a COM port using PySerial?

    I have Python 3.6.1 and PySerial installed. I am able to get a list of COM ports connected. I want to send data to the COM port and receive responses: import serial.tools.list_ports as port_list po...

  3. python - No module named serial - Stack Overflow

    Serial is not included with Python. It is a package that you'll need to install separately. Since you have pip installed you can install serial from the command line with:

  4. Python Serial: How to use the read or readline function to read more ...

    Apr 18, 2013 · Python Serial: How to use the read or readline function to read more than 1 character at a time Asked 12 years, 10 months ago Modified 1 year, 11 months ago Viewed 478k times

  5. Reading serial data in realtime in Python - Stack Overflow

    Nov 11, 2013 · I am using a script in Python to collect data from a PIC microcontroller via serial port at 2Mbps. The PIC works with perfect timing at 2Mbps, also the FTDI usb-serial port works great at …

  6. How to write integers to port using PySerial - Stack Overflow

    Jul 25, 2014 · I am trying to write data to the first serial port, COM1, using PySerial.

  7. python - Failing to get response from serial port using pyserial ...

    0 I'm trying to connect to a device using a serial port. I tried two ways – 1) pyserial in Python and 2) PuTTY. I managed to connect to the device and use it, using PuTTY. However, in Python I can only …

  8. python - AttributeError: module 'serial' has no attribute 'Serial ...

    Dec 17, 2016 · 2 I was getting the same error, but what works for me was: uninstall serial : pip3 uninstall serial uninstall pyserial: pip3 uninstall pyserial reinstall a previous version of pyserial: pip3 install …

  9. Python, pyserial, No module named 'serial' - Stack Overflow

    Mar 28, 2025 · I am using python to interogate a USB Serial device (a nino tnc) I have 3 separate systems. Linux ubuntu with no issues Linux Rpi with no issues Windows 10 with issues. As it …

  10. Pyserial install for Python 3.X (64bit windows) - Stack Overflow

    Feb 25, 2016 · Try installing PySerial from the command line in Windows. Just make sure 'pip' is in your PATH. C:\Users\User>pip install pyserial By the way, newer versions of PySerial have some bugs …