Metadata-Version: 1.1
Name: Nortek
Version: 0.0.1
Summary: Package for working with Nortek instruments and data files.
Home-page: https://github.com/petebachant/Nortek-Python.git
Author: Pete Bachant
Author-email: petebachant@gmail.com
License: MIT
Description: 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
        -----
        
        ```python
        >>> from nortek.controls import PdControl
        >>> vectrino = PdControl()
        >>> vectrino.serial_port = "COM2"
        >>> vectrino.state
        'Not connected'
        >>> vectrino.sample_rate = 200
        >>> vectrino.coordinate_system
        'ENU'
        ```
        
        
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Science/Research
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
