Metadata-Version: 2.1
Name: windfreak
Version: 0.1.0
Summary: Python package for Windfreak Technologies devices.
Home-page: https://github.com/christian-hahn/windfreak-python
Author: Christian Hahn
Author-email: christianhahn09@gmail.com
License: MIT
Description: # windfreak-python [![License](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/christian-hahn/windfreak-python/blob/master/LICENSE)
        
        ## Abstract
        
        windfreak is a pure Python package to facilitate use of Windfreak Technologies devices from Python.
        
        windfreak is Python 3 compatible.
        
        ## Supported devices
        * SynthHD
        * SynthHD PRO
        
        ## Installation
        
        Using `pip`:
        ```text
        sudo pip install windfreak
        ```
        
        Using `setup.py`:
        ```text
        git clone https://github.com/christian-hahn/windfreak-python.git
        cd windfreak-python
        sudo python setup.py install
        ```
        
        ## Example
        
        ### SynthHD
        
        ```python
        from windfreak import SynthHD
        
        synth = SynthHD('/dev/ttyACM0')
        synth.init()
        
        # Set channel 0 power and frequency
        synth[0].power = -10.
        synth[0].frequency = 2.e9
        
        # Enable channel 0
        synth[0].enable = True
        ```
        
        ## License
        windfreak-python is covered under the MIT licensed.
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3
Description-Content-Type: text/markdown
