Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 426 Bytes

README.md

File metadata and controls

17 lines (12 loc) · 426 Bytes

Python Library for Roth Touchline

A simple helper library for controlling a Roth Touchline heat pump controller

from pytouchline import PyTouchline

py_touchline = PyTouchline()

numberOfDevices = int(py_touchline.get_number_of_devices("http://192.168.1.10"))
device1 = PyTouchline(id=1)
device1.update()
print(device1.get_name())
print(device1.get_current_temperature())
print(device1.get_target_temperature())