Skip to content

Latest commit

 

History

History
53 lines (38 loc) · 1.26 KB

File metadata and controls

53 lines (38 loc) · 1.26 KB

hplc_interface_python

Package Information

Name
hplc_interface_python
Version
1.0.0
License
BSD
URL
https://github.com/janelia-python/hplc_interface_python
Author
Peter Polidoro
Email
peter@polidoro.io

This Python package (hplc_interface) creates a class named HplcInterface.

Example Usage

from hplc_interface import HplcInterface
dev = HplcInterface() # Might automatically find devices if available

More Detailed Modular Device Information

https://github.com/janelia-modular-devices/modular-devices

Installation

https://github.com/janelia-python/python_setup

Install Arduino and Teensyduino on your Host Machine

https://github.com/janelia-arduino/arduino_setup

Linux and Mac OS X

mkdir -p ~/venvs/hplc_interface
virtualenv ~/venvs/hplc_interface
#Python3
virtualenv -p python3 ~/venvs/hplc_interface
source ~/venvs/hplc_interface/bin/activate
pip install hplc_interface

Windows

virtualenv C:\venvs\hplc_interface
C:\venvs\hplc_interface\Scripts\activate
pip install hplc_interface