CedricLevasseur / cozytouchpy

Cozytouch python implementation

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

cozytouchpy

Inspired and forked from the biker91620 repository

Cozytouch python implementation

This API allows you to control Atlantic, Thermor and Sauter equipment via the Cozytouch bridge

Used to obtain information from the following sensors:

  • Gateway
  • Radiators
  • Water heaters and other counters
  • APC Heat Pump (Beta)

Example

 from cozytouchpy import CozytouchClient
 
 username="my-username"
 password="my-password"
 
 client = CozytouchClient(username, password)
 client.connect()
 setup = await client.async_get_setup() 
 for place in setup.places:  
     print(place.id)

About

Cozytouch python implementation

License:GNU General Public License v3.0


Languages

Language:Python 100.0%