Metadata-Version: 2.1
Name: lyngdorf
Version: 0.2.8
Summary: Library to control a Lyngdorf A/V processor
License: MIT
Author: Alex Fishlock
Author-email: alex.fishlock@racingjag.com
Requires-Python: >=3.11,<4.0
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: attrs (>=23.1.0,<24.0.0)
Description-Content-Type: text/markdown

# lyngdorf

Automation Library for Lyngdorf receivers

## Installation

Use pip:

```$ pip install lyngdorf```

or 

```$ pip install --use-wheel lyngdorf```

## Usage

Primarily designed to be used by Home Assistant, this library can be used as follows:

```
>>> from lyngdorf.mp60 import LyngdorfMP60Client
>>> mp60 = LyngdorfMP60Client("192.168.16.16")
>>> await mp60.async_connect()
>>> mp60.power_on(True)
>>> print(mp60.volume)
-36.5
>>> mp60.volume=-22.5
>>> print(mp60.volume)
--22.5

```
  
