Metadata-Version: 2.1
Name: lickport-array-interface
Version: 0.6.0
Summary: Lickport array interface.
Home-page: https://github.com/janelia-pypi/lickport_array_interface_python
Author: Peter Polidoro
Author-email: peter@polidoro.io
License: BSD
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 3
License-File: LICENSE

lickport_array_interface_python
===============================

This Python package creates a class named LickportArrayInterface.

Authors::

    Peter Polidoro <peter@polidoro.io>

License::

    BSD

Example Usage::

    from lickport_array_interface import LickportArrayInterface
    dev = LickportArrayInterface() # Try to automatically detect port
    dev = LickportArrayInterface(port='/dev/ttyACM0') # Linux specific port
    dev = LickportArrayInterface(port='/dev/tty.usbmodem262471') # Mac OS X specific port
    dev = LickportArrayInterface(port='COM3') # Windows specific port
    dev.start_acquiring_data()
    dev.start_saving_data()
    dev.stop_saving_data()
    dev.stop_acquiring_data()


