Skip to content

SRMebius/aries_python

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

38 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ARIES / LYNX モーターコントローラのpython制御

神津精機株式会社さんのARIES / LYNX ドライバ分離型多軸モーターコントローラをPythonで制御します。

研究室の3軸ステージの制御用に作成。

Usage

環境次第でpippip3pipenvpip installpoetry addなどに読み替えてください。

Install

pip install git+https://github.com/2-propanol/aries_python

Update

pip install -U aries_python

aries(コマンドラインツール)

aries --host <HOST> --port <PORT> <operation>

HOST, PORTは省略した場合、192.168.1.20, 12321が使われます。

import(Pythonモジュール)

>>> from aries import Aries
>>> stage = Aries()

>>> print(stage.position)
(0.0, 0.0, 0.0)

>>> stage.raw_command("RPS2/4/45000/1")
>>> print(stage.position)
(0.0, 45.0, 0.0)

Uninstall

pip uninstall aries_python

About

An unofficial telnet wrapper for "ARIES / LYNX" motor controller by Kohzu Precision Co.,Ltd.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%