This is an addon for qToggleServer.
It provides a driver to control your MELCloud (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 using pip:
pip install qtoggleserver-melcloud
...
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", ...]
}
...
]
...