Metadata-Version: 2.4
Name: pysentio
Version: 0.1.0
Summary: Python library for Sentio Pro Sauna Controller
Home-page: https://github.com/astrandb/pysentio
Author: Ake Strandberg
Author-email: ake@strandberg.eu
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
Requires-Dist: serialx
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# 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)
```
