Metadata-Version: 2.1
Name: airtouch3
Version: 0.6
Summary: API for the monitoring and control of a HVAC unit branded Polyaire Airtouch 3 over a local network
Home-page: https://github.com/tonymyatt/airtouch3api
Author: Tony Myatt
Author-email: tony@myatt.com.au
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/tonymyatt/airtouch3api/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# Airtouch 3 Python API
Api for the monitoring and control of a HVAC unit branded Polyaire Airtouch 3.
https://www.polyaire.com.au/about-us/news/airtouch-version-3-now-available/

# API Definition

## General Usage
To initialise:\
`at3 = AirTouch3("192.168.1.1")`

To read status from unit, return true if succesful, otherwise false:\
`at3.UpdateStatus();`

## Air Touch Object
`at3.name`\
`at3.id`\
`at3.comms_status`\
`at3.comms_error`\
`at3.groups`\
`at3.acUnits`\
`at3.sensors`\
`at3.UpdateStatus()`\
`at3.PrintStatus()`

## Group Functions (aka Zones in most other systems)
`at3.ToggleGroup(group_id)`\
`at3.TogglePositionGroup(group_id, direction)`
## Group Objects
`at3.groups[group_id].number`\
`at3.groups[group_id].name`\
`at3.groups[group_id].is_on`\
`at3.groups[group_id].mode`\
`at3.groups[group_id].open_percent`\
`at3.groups[group_id].temperature`\
`at3.groups[group_id].tempeature_sp`\
`at3.groups[group_id].Toggle()`\
`at3.groups[group_id].PositionDec()`\
`at3.groups[group_id].PositionInc()`

## AC Unit Functions
`at3.ToogleAcUnit(unit_id)`\
`at3.ToggleTemperaturAcUnit(unit_id, direction)`
## AC Unit Objects
`at3.acUnits[unit_id].number`\
`at3.acUnits[unit_id].is_on`\
`at3.acUnits[unit_id].has_error`\
`at3.acUnits[unit_id].mode`\
`at3.acUnits[unit_id].brand`\
`at3.acUnits[unit_id].fan_speed`\
`at3.acUnits[unit_id].temperature`\
`at3.acUnits[unit_id].temperature_sp`\
`at3.acUnits[unit_id].Toggle()`\
`at3.acUnits[unit_id].TemperatureInc()`\
`at3.acUnits[unit_id].TemperatureDec()`

## AC Sensor Objects
`at3.sensors[sensor_name].name`\
`at3.sensors[sensor_name].temperature`\
`at3.sensors[sensor_name].low_battery`

## Simple Example

```
from airtouch3.airtouch3 import AirTouch3, AT3CommsStatus

at3 = AirTouch3('192.168.1.72')
at3.UpdateStatus()
if at3.comms_status != AT3CommsStatus.OK:
    print("Connection failed")
    exit()
at3.PrintStatus()

# Toggle a zone on/off
print(f"Toogle Group 7 {at3.ToggleGroup(7)}")
g = at3.groups[7]
print(f"Group {g.name}: {g.is_on}; Mode is {g.mode}; {g.open_percent}%; Temp: {g.temperature}degC Target: {g.temperature_sp}degC")

# Increase a group position
print(f"Increase zone 0: {at3.TogglePositionGroup(0, AT3Command.INCREMENT)}")
g = at3.groups[0]
print(f"Group {g.name}: {g.is_on}; Mode is {g.mode}; {g.open_percent}%; Temp: {g.temperature}degC Target: {g.temperature_sp}degC")

# Decrease a group position
print(f"Decrease zone 6: {at3.groups[6].PositionDec()}")
g = at3.groups[6]
print(f"Group {g.name}: {g.is_on}; Mode is {g.mode}; {g.open_percent}%; Temp: {g.temperature}degC Target: {g.temperature_sp}degC")

# Toogle AC Unit 1 on/off
print(f"Toogle AC Unit 1 {at3.acUnits[1].Toggle()}")

# Toogle AC Unit 1 Temp Setpoint Up
print(f"Toogle AC Unit 1 {at3.acUnits[1].TemperatureInc()}")
at3.PrintStatus()

# Toogle AC Unit 0 Temp Setpoint Down
print(f"Toogle AC Unit 0 {at3.ToggleTempAcUnit(0, AT3Command.DECREMENT)}")
at3.PrintStatus()
```
# Warning
This was code developed by testing with my Airtouch 3 system. I noted during development, if the unit received unexpected data, it would stop all communication (which includes to your mobile app) for a couple of minutes. There should be no issues with your Airtouch 3 system continuing to work with your mobile app while using this API, buts that your risk if you try it and you have problems.

# Thanks
With thanks to the following projects which provided inspiration:\
https://github.com/ozczecho/vzduch-dotek \
https://github.com/L0rdCha0s/homebridge-airtouch3-airconditioner \
https://github.com/LonePurpleWolf/airtouch4pyapi


