cyr-ius / cozytouchpy

Cozytouch python implementation
GNU General Public License v3.0
12 stars 7 forks source link

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:

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)