Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Twinleaf I/O Python module

License

NotificationsYou must be signed in to change notification settings

twinleaf/tio-python

Repository files navigation

This package implements a communications protocol in python to work withTwinleaf sensors usingTwinleaf I/O (TIO) as the communications layer. Data from the sensors is received via PUB messages and sensor parameters may be changed using REQ/REP messages.

itio

Use

Two example scripts are installed with this package:

  • itio: A interactive session for configuring devices
  • tio_monitor: A live graph of streamed data (does not work on windows)

These examples can be called with "url" that is either a serial port (/dev/cu.usbserialXXXXXX,/dev/ttyUSBx,COMx) or a net url such astcp://localhost.

itio

Prerequisites

Python >= 3.6 is required.

  • Windows may install via theMicrosoft Store
  • macOS may consider installing withHomebrew:brew install python3
  • linux may use your native package manager; on debian/ubuntu use:sudo apt-get install python3.

The interactive prompt is a lot better if ipython is available (pip3 install ipython).

Installation

tio-python is uploaded toPyPI and can be installed/upgraded usingpip:

  • pip3 install tio --upgrade

Windows users who can't run python might need toadd python to their path.

Windows users who run into an error installing packages may need toenable long paths.

Windows console scripts are installed in an odd folder which may be added to your path:

C:\Users\username\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.10_qbz5n2kfra8p0\LocalCache\local-packages\Python310\Scripts

When installed without sudo on macOS, add the following to your~/.zshrc:

export PATH=/Users/user/Library/Python/3.9/bin:$PATH

Optional installation

iPython greatly enhances the interactive itio.py program. It is possible to explore the properties of a device by using tab completion to see available properties and methods. Get it

  • macOS/linux:pip3 install ipython
  • Windows:py -m pip install ipython

Performance

Sadly, python is not the best choice for fast data processing. If the background thread ingesting the data does not keep up with the data rate, it exits with an error.

At the moment, the native serial interface is significantly slower than the TCP version. As a result, we recommend that users use the TCP proxy program found intio-tools to manage the serial port in C and convert the data into a TCP stream. The proxy has the added advantage that multiple clients can simultaneously connect to the sensor and use the data.

Terminal #1: serial proxy

$ bin/proxy /dev/ttyUSB0

Terminal #2: your python program

$ itio.py...

where the proxy serves to port 7855 and itio by default connects to that port on localhost. This also permits more interesting networking topologies and distributed signal anslysis possible.

Programming

Thetldevice module performs metaprogramming to construct an object that has methods that match the RPC calls available on the device. It uses thetio module, a lower-level library for connecting and managing a communication session. To interact with a Twinleaf CSB current supply, a script would look like:

importtldevicecsb=tldevice.Device('COM1')csb.coil.x.current(0.25)# mA

To receive data streams from a sensor such as theTwinleaf VMR vector magnetometer, it is possible to use the named streams such as vmr.gmr(duration=1) to get one second of data. To get the data from all the streams synchronously, use the iterator at vmr.data.stream_iter(). A simple logging program for the VMR vector magnetometer would look like this:

importtldevicevmr=tldevice.Device()file=open('log.tsv','w')forrowinvmr.data.iter():rowstring="\t".join(map(str,row))+"\n"file.write(rowstring)

TODO

  • Threaded session management
  • Attempt automatic reconnection on loss of port
  • stream_iter smarter should terminate if the setup changes

About

Twinleaf I/O Python module

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors4

  •  
  •  
  •  
  •  

Languages


[8]ページ先頭

©2009-2025 Movatter.jp