Extends pyserial to make serial device interfaces.
Project description
About
- Name: serial_interface
- Description: Extends pyserial to make serial device interfaces.
- Version: 2.3.1
- Release Date: 2022-12-21
- Creation Date: 2018-01-11
- License: BSD-3-Clause
- URL: https://github.com/janelia-pypi/serial_interface_python
- Author: Peter Polidoro
- Email: peter@polidoro.io
- Copyright: 2022 Howard Hughes Medical Institute
- References:
- https://pyserial.readthedocs.io
- Dependencies:
- pyserial
Example Usage
Python
from serial_interface import SerialInterface, find_serial_interface_ports
find_serial_interface_ports() # Returns list of available serial ports
dev = SerialInterface() # Might automatically find device if one available
# if it is not found automatically, specify port directly
dev = SerialInterface(port='/dev/ttyUSB0') # Linux
dev = SerialInterface(port='/dev/tty.usbmodem262471') # Mac OS X
dev = SerialInterface(port='COM3') # Windows
dev.get_device_info()
from serial_interface import SerialInterfaces
devs = SerialInterfaces() # Might automatically find all available devices
# if they are not found automatically, specify ports to use
devs = SerialInterfaces(use_ports=['/dev/ttyUSB0','/dev/ttyUSB1']) # Linux
devs = SerialInterfaces(use_ports=['/dev/tty.usbmodem262471','/dev/tty.usbmodem262472']) # Mac OS X
devs = SerialInterfaces(use_ports=['COM3','COM4']) # Windows
devs.get_devices_info()
devs.sort_by_port()
dev = devs[0]
dev.get_device_info()
Command Line
Installation
https://github.com/janelia-pypi/python_setup
GNU/Linux
Drivers
GNU/Linux computers usually have all of the necessary drivers already installed, but users need the appropriate permissions to open the device and communicate with it.
Udev is the GNU/Linux subsystem that detects when things are plugged into your computer.
Udev may be used to detect when a serial device is plugged into the computer and automatically give permission to open that device.
If you plug a sensor into your computer and attempt to open it and get an error such as: "FATAL: cannot open /dev/ttyUSB0: Permission denied", then you need to install udev rules to give permission to open that device.
Udev rules may be downloaded as a file and placed in the appropriate directory using these instructions:
-
Download rules into the correct directory
curl -fsSL https://raw.githubusercontent.com/platformio/platformio-core/master/scripts/99-platformio-udev.rules | sudo tee /etc/udev/rules.d/99-platformio-udev.rules
-
Restart udev management tool
sudo service udev restart
-
Ubuntu/Debian users may need to add own “username” to the “dialout” group
sudo usermod -a -G dialout $USER sudo usermod -a -G plugdev $USER
-
After setting up rules and groups
You will need to log out and log back in again (or reboot) for the user group changes to take effect.
After this file is installed, physically unplug and reconnect your board.
Python Code
The Python code in this library may be installed in any number of ways, chose one.
-
pip
python3 -m venv ~/venvs/serial_interface source ~/venvs/serial_interface/bin/activate pip install serial_interface
-
guix
Setup guix-janelia channel:
https://github.com/guix-janelia/guix-janelia
guix install python-serial-interface
Windows
Drivers
Download and install driver for the specific serial device.
Python Code
The Python code in this library may be installed in any number of ways, chose one.
-
pip
python3 -m venv C:\venvs\serial_interface C:\venvs\serial_interface\Scripts\activate pip install serial_interface
Development
Install Guix
Clone Repository
git clone https://github.com/janelia-pypi/serial_interface_python
cd serial_interface_python
Edit .metadata.org
make metadata-edits
Tangle .metadata.org
make metadata
Test Python package using ipython shell
make ipython-shell # PORT=/dev/ttyUSB0
# make PORT=/dev/ttyUSB1 ipython-shell
import serial_interface
exit
Test installation of Guix package
make installed-shell # PORT=/dev/ttyUSB0
# make PORT=/dev/ttyUSB1 installed-shell
exit
Upload Python package to pypi
make upload
Test direct device interaction using serial terminal
make serial-shell # PORT=/dev/ttyUSB0
# make PORT=/dev/ttyUSB1 serial-shell
? # help
settings
[C-a][C-x] # to exit
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file serial_interface-2.3.1.tar.gz
.
File metadata
- Download URL: serial_interface-2.3.1.tar.gz
- Upload date:
- Size: 9.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.15.0 pkginfo/1.8.3 requests/2.28.1 setuptools/58.1.0 requests-toolbelt/0.9.1 tqdm/4.64.1 CPython/3.9.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bc7bdf9a2cf6a7fc7699fb09c2bcb0f8b4b99959ca70418fe80c87c05b4c0067 |
|
MD5 | a8dedc3e4ed3a8c7f5facc11f3eb2f3b |
|
BLAKE2b-256 | c648ee9894af0b95772fc56be14c63dc465440e8b42206ff9e819a8259462db4 |
File details
Details for the file serial_interface-2.3.1-py3-none-any.whl
.
File metadata
- Download URL: serial_interface-2.3.1-py3-none-any.whl
- Upload date:
- Size: 9.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.15.0 pkginfo/1.8.3 requests/2.28.1 setuptools/58.1.0 requests-toolbelt/0.9.1 tqdm/4.64.1 CPython/3.9.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 17347ec040d741152cc937129c86ea00ec3fe6a188d2119be2d1fbc95a76d6be |
|
MD5 | d517426748aa5c32b0eb73cb63058688 |
|
BLAKE2b-256 | 59138b6eaa6b578766789af2bbf2b38ad1a68e9f48e9bc757a8f640b6db85a2e |