Metadata-Version: 2.4
Name: qtoggleserver-melcloud
Version: 1.0.0
Summary: Control your MELCloud devices with qToggleServer
Author-email: Calin Crisan <ccrisan@gmail.com>
License: Apache 2.0
Requires-Python: >=3.14
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Requires-Dist: aiohttp
Requires-Dist: python-melcloud
Dynamic: license-file

## About

This is an addon for [qToggleServer](https://github.com/qtoggle/qtoggleserver).

It provides a driver to control your [MELCloud](https://melcloud.com/) (Mitsubishi Electric) devices with qToggleServer.

This add-on is based on the `python-melcloud` Python package (see https://github.com/erwindouna/python-melcloud). 

Currently only air-to-air units (A/C) are supported.


## Install

Install using pip:

    pip install qtoggleserver-melcloud


## Usage

##### `qtoggleserver.conf:`
``` ini
...
peripherals = [
    ...
    {
        driver = "qtoggleserver.melcloud.MELCloud"
        name = "mymelcloud"                # a name of your choice
        username = "username"
        password = "password"
        # optionally select only specific devices by name
        device_names = ["First Device Name", ...]
    }
    ...
]
...
```
