A Python package for controlling the Fröling heating system (S3200) over the maintenance interface
Project description
s3200
A Python3 package for controlling the Fröling heating system with S3200 lambdatronic control over the maintenance interface.
State: Beta
Implemented: Reading and writing all values. Not Implemented: force_mode and set_time_slot
Code Example:
from s3200.obj import S3200()
s = S3200("/dev/ttyS0")
temperature = s.get_value('boiler_1_temperature')
print('Temperature: {0}'.format(str(temperature)))
status = s.get_status()
print('Status: {0}'.format(status))
Output:
Temperature: 42.5
Status: STÖRUNG
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
s3200-0.0.2.tar.gz
(15.4 kB
view hashes)
Built Distribution
s3200-0.0.2-py3-none-any.whl
(18.2 kB
view hashes)