Metadata-Version: 2.1
Name: pybls21
Version: 3.0.3
Summary: An api allowing control of AC state (temperature, on/off, speed) of an Blauberg S21 device locally over TCP
Home-page: https://github.com/jvitkauskas/pybls21
Author: Julius Vitkauskas
Author-email: zadintuvas@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pyModbusTCP <1.0,>=0.2.1

# Blauberg S21 Python TCP API
An api allowing control of AC state (temperature, on/off, speed) of an Blauberg S21 device locally over TCP.

## Usage
To initialize:
`client = S21Client("192.168.0.125")`

To load:
`client.poll()`

The following functions are available:
`turn_on()`
`turn_off()`
`set_hvac_mode(hvac_mode: HVACMode)`
`set_fan_mode(mode: int)`
`set_manual_fan_speed_percent(speed_percent: int)`
`set_temperature(temp_celsius: int)`
`reset_filter_change_timer()`
