Metadata-Version: 2.1
Name: pysentio
Version: 0.0.51rc1
Summary: Python library for Sentio Pro Sauna Controller
Home-page: https://github.com/astrandb/pysentio
Author: Ake Strandberg
Author-email: ake@strandberg.eu
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 4 - Beta
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE

# pysentio
Library for Sentio Pro sauna controller

Designed for use with Homeassistant. Provides the api to a Sentio Pro Sauna controller with RS-485 serial interface.


## Example for test and debug
```python
from pysentio import SentioPro

ss = SentioPro('/dev/ttyUSB0', 57600)
ri = ss._write_read('get info\n')
print(ri)
print(ss._type)
print(ss._version)
```


