Control an Airton AC device over LAN. This requires having the wifi module.
- asynchronous methods and transport
- persistent communication to the device
- automatic remote device state updates (remotes can still be used)
- configurable buffering for subsequent updates
- constraints between device commands
- Domoticz plugin using a dedicated thread
See local tuya requirements first to find device information.
Example usage:
from local_tuya import DeviceConfig, ProtocolConfig
from airton_ac import ACDevice, ACFanSpeed
async with ACDevice(DeviceConfig(ProtocolConfig("{id}", "{address}", b"{key}"))) as device:
await device.switch(True)
await device.set_speed(ACFanSpeed.L2)
await device.switch(False)
The plugin requires having fetched device information using instructions above. Make sure to read plugin instructions first.
💡 The Domoticz version should be
2022.1
or higher.
python -m pip install --upgrade airton-ac[domoticz]
python -m airton_ac.domoticz.install
Domoticz path defaults to ~/domoticz
but you can pass a -p
option to the second command to change that:
python -m airton_ac.domoticz.install -p /some/other/path
Restart Domoticz and create a new Hardware using Tuya Airton AC
. Fill in device information and add.
The hardware will create up to 5 devices to control the fan (all prefixed with hardware name):
power
: to turn on or offset point
: to set the target temperaturetemperature
: to record curent temperature as measured by the unitmode
: to control operating modefan
: to control fan speedeco
: toggle low heat when heating and eco-mode when coolinglight
: toggle display on the unitswing
: toggle swing modesleep
: toggle sleep modehealth
: toggle health mode
You can customize the devices you want added in the hardware page.
All device names and levels can be changed once added as only IDs are used internally.