Skip to content

Latest commit

 

History

History
66 lines (41 loc) · 1.16 KB

File metadata and controls

66 lines (41 loc) · 1.16 KB

ixcom: Communication with iMAR devices

The ixcom python package makes communication with iMAR's inertial navigation systems speaking the iXCOM protocol very simple.

Installation

The ixcom package can be installed from pypi.org:

pip install ixcom

Examples

Connect to the system with IP 192.168.1.30 and start a new alignment:

import ixcom

client = ixcom.Client('192.168.1.30')
client.open_last_free_channel()
client.realign()

Contact

For questions going beyond this documentation or about the iMAR navigation systems, please contact [email protected] .

.. toctree::
   :hidden:
   :maxdepth: 2
   :caption: API documentation

   ixcom
   protocol

.. toctree::
   :hidden:
   :maxdepth: 2
   :caption: Examples

   examples

.. toctree::
   :hidden:
   :maxdepth: 2
   :caption: Command line utilities

   cli