Metadata-Version: 2.4
Name: PySigmaKoki
Version: 2.1.7
Summary: Python Interface for Instruments by Sigma Koki
Author-email: Akira Okumura <oxon@mac.com>
License: BSD License
Project-URL: Repository, https://github.com/akira-okumura/PySigmaKoki.git
Project-URL: Issues, https://github.com/akira-okumura/PySigmaKoki/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: pyserial

# PySigmaKoki
Python module to control Sigma Koki stages

# Install
    $ pip install pysigmakoki

# Example
    >>> import sigma_koki
    >>> gsc02 = sigma_koki.GSC02()
    >>> gsc02.open('/dev/tty.usbserial-FTT75V89A')
    >>> gsc02.setSpeed(1, 50, 20000, 1000, 50, 20000, 1000)
    >>> gsc02.returnToMechanicalOrigin('+', '+')
    >>> gsc02.move(-50000, -50000)
    >>> gsc02.getStatus()
    '-    50000,-    50000,K,K,R'
