Metadata-Version: 2.1
Name: nuvo_tuner
Version: 1.1.1
Summary: Python API for controlling Nuvo tuners
Home-page: https://github.com/brmccrary/pynuvo-tuner
Author: bmccrary
Author-email: bmccrary@shcircuit.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: pyserial>=3.4

# pynuvo-tuner
Python library for controlling Nuvo tuners (NV-T2SIR) via RS-232.

Used by the [nuvo_tuner](https://github.com/brmccrary/nuvo_tuner) Home Assistant integration.

## Install

```
pip install nuvo-tuner
```

## Usage

```python
from nuvo_tuner import get_nuvo

nuvo = get_nuvo('/dev/ttyUSB0', '57600', 'seek')
model = nuvo.get_model()
status = nuvo.tuner_status('A')
```
