Giter Site home page Giter Site logo

kolanich-physics / universal_usbtmc Goto Github PK

View Code? Open in Web Editor NEW

This project forked from pklaus/universal_usbtmc

0.0 1.0 0.0 43 KB

Universal Python Interface For Different USBTMC Backends.

Home Page: http://universal-usbtmc.readthedocs.io

Python 100.00%

universal_usbtmc's Introduction

A Universal USBTMC Package for Python

universal_usbtmc is an effort to fix the clutter of USBTMC implementations for Python.

This project provides a unified interface to the different ways/ implementations ("backends") to talk to USBTMC devices ("instruments"). This allows you to write very platform independent code.

It also comes with an interactive USBTMC shell.

You can use the following instrument implementations ("backends") in your software:

As already mentioned, you'll automatically gain a large deal of platform independence as any operating system will support at least some of those backends.

Installation

pip install universal_usbtmc

Usage

This software is mainly made to be used by other software, not humans.
It comes, however, with a small command line tool called usbtmc-shell. You can use it to test if the different backends work for you. (Or for trying to talk to a new device you just bought.) See below in the backends sections on how to use it with different backends.

Backends

To communicate with your device, the following backends are available:

  • linux_kernel
  • python_usbtmc
  • tcp_socket
  • python_vxi11
  • pyserial

Backend Details

linux_kernel

Uses the Linux Kernel Module usbtmc
The source code of the kernel module can be found here.

To use this backend, you must be using a Linux kernel and have the kernel module compiled and loaded. Look for the device /dev/usbtmc0 to check your USBTMC device is detected.

You can run the usbtmc shell to check if everything works OK:

usbtmc-shell --backend linux_kernel /dev/usbtmc0

python_usbtmc

Uses the libusb-/PyUSB-based python-usbtmc.

Here's how to use the usbtmc shell with it:

usbtmc-shell --backend python_usbtmc USB::0x1ab1::0x0588::INSTR

To use the backend python_usbtmc, you need to install the requirements python-usbtmc and PyUSB:

pip install python-usbtmc pyusb

The backend works on Mac OS X and Linux.

tcp_socket

This backend connects to your instrument via TCP sockets. How is this possible if the instrument itself doesn't have an Ethernet port? You can put it on the net with rpi-usbtmc-gateway!

To connect using the tcp_socket backend, run:

usbtmc-shell --backend tcp_socket 192.168.0.21
# or
usbtmc-shell --backend tcp_socket TCPIP::192.168.0.21::5025::SOCKET

This backend has no external dependencies and works on all operating systems.

python_vxi11

This backend connects to your instrument via VXI-11. This is not USBTMC in a way but the interface with SCPI commands is usually the same.

Uses the Python library python-vxi11.

To connect using the python_vxi11 backend, run:

usbtmc-shell --backend python_vxi11 192.168.0.21
# or
usbtmc-shell --backend python_vxi11 TCPIP::192.168.0.21::INSTR

To use this backend, install python-vxi:

pip install python-vxi11

The backend should work on all operating systems.

pyserial

This backend uses PySerial to connect to your device via RS232. On some devices, this is more stable than the USBTMC connection.

usbtmc-shell --backend pyserial ASRL::/dev/ttyUSB0,9600::INSTR

Off course, you need to install PySerial first! The backend works on all operating systems.

Resources

universal_usbtmc's People

Contributors

pklaus avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.