Metadata-Version: 2.1
Name: python-daikin-altherma
Version: 0.0.4
Summary: Connect to daikin altherma heat pumps
Home-page: http://github.com/Frankkkkk/python-daikin-altherma
Author: Frank Villaro-Dixon
Author-email: frank@villaro-dixon.eu
License: MIT
Keywords: daikin altherma heat pump
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Topic :: Utilities
Classifier: License :: OSI Approved :: MIT License
Description-Content-Type: text/markdown
Requires-Dist: dpath
Requires-Dist: websocket-client

# python-daikin-altherma
talks to daikin altherma via LAN adapter BRP069A61 or BRP069A62

# How to use
## How to install ?
Simply type `pip3 install python-daikin-altherma`

## How to run
```python3
>>> from daikin_altherma import DaikinAltherma
>>> d = DaikinAltherma('192.168.10.126')
>>> print(f'My outdoor temperature is {d.outdoor_temperature}°C')
My outdoor temperature is 2.0°C
```

# Documentation
```
class DaikinAltherma(builtins.object)
 |  DaikinAltherma(adapter_ip: str)
 |  
 |  Methods defined here:
 |  
 |  set_heating(self, heating_active: bool)
 |      Whether to turn the heating on(True) or off(False).
 |      You can confirm that it works by calling self.power_state
 |  
 |  ----------------------------------------------------------------------
 |  Readonly properties defined here:
 |  
 |  adapter_model
 |      Returns the model of the LAN adapter
 |  
 |  indoor_temperature
 |      Returns the indoor temperature, in °C
 |  
 |  leaving_water_temperature
 |      Returns the heating leaving water temperature, in °C
 |  
 |  outdoor_temperature
 |      Returns the outdoor temperature, in °C
 |  
 |  power_consumption
 |      Returns the energy consumption in kWh per [D]ay, [W]eek, [M]onth
 |  
 |  power_state
 |      Returns the power state
 |  
 |  tank_temperature
 |      Returns the hot water tank temperature, in °C
 |  
```

# Acknowledgments
Many thanks to [william-sy](https://github.com/william-sy/Daikin-BRP069A62) and [KarstenB](https://github.com/KarstenB/DaikinAltherma) for their bootstrap !


