Metadata-Version: 2.1
Name: airtouch4pyapi
Version: 0.0.8
Summary: An api allowing control of AC state (temperature, on/off, mode) of an Airtouch 4 controller locally over TCP
Home-page: https://github.com/LonePurpleWolf/airtouch4pyapi
Author: Sam Sinnamon
Author-email: samsinnamon@hotmail.com
License: UNKNOWN
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
Requires-Dist: libscrc

# Airtouch 4 Python TCP API
An api allowing control of AC state (temperature, on/off, mode) of an Airtouch 4 controller locally over TCP.

## Warning
I am using this with my own Airtouch 4 and see no issues. Please don't blame me if you have any issues with your Airtouch 4 or AC system after using this - I don't know much about AC systems and will probably not be able to help!
## Usage
To initialise:
`airTouch = AirTouch("192.168.1.19")`

The following functions are available:

Group Level Functions:
`SetGroupToTemperature`
`TurnGroupOn`
`TurnGroupOff`
`SetCoolingModeByGroup`
`SetFanSpeedByGroup`
`GetSupportedCoolingModesByGroup`
`GetSupportedFanSpeedsByGroup`

AC Level Functions
`TurnAcOn`
`TurnAcOff`
`SetFanSpeedForAc`
`SetCoolingModeForAc`
`GetSupportedCoolingModesForAc`
`GetSupportedFanSpeedsForAc`
`GetAcs`



