Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 714 Bytes

README.md

File metadata and controls

31 lines (24 loc) · 714 Bytes

Nortek-Python

A Python package for working with Nortek instruments and data.

Installation

  • Install Nortek's PdCommATL library (contact Nortek to obtain the necessary installer).
  • Either run pip install nortek, or git clone this repository, and inside run python setup.py install from a command prompt.

Usage

>>> from nortek.controls import PdControl
>>> vectrino = PdControl()
>>> vectrino.serial_port = "COM2"
>>> vectrino.state
'Not connected'
>>> vectrino.sample_rate = 200
>>> vectrino.coordinate_system
'ENU'

Acknowledgments

Thanks to PJ Rusello from Nortek for sharing his code for reading the Nortek binary data files.