A library to interface with HWAM wood burning stoves.
Project description
pystove
An async python library with command line interface to interact with HWAM SmartControl wood burning stoves.
Contents
Usage Example
import asyncio
from pystove import Stove
HOST = 'stove.local'
async def switch_on_stove():
"""Create a Stove object, switch to ignition mode and set burn level to 5."""
# Create the object
stove = await Stove.create(HOST)
# Switch to ignition mode
if await stove.start():
# If successful, set burn level to 5.
await stove.set_burn_level(5)
# Clean up
await stove.destroy()
# Set up the event loop and run the switch_on_stove coroutine.
loop = asyncio.get_event_loop()
loop.run_until_complete(switch_on_stove())
Library Reference
Properties
Stove.algo_version
The algorithm version of the stove.
Stove.name
The name of the stove as set during initial configuration.
Stove.series
The series/model of the stove.
Stove.stove_host
The hostname used during creation of the Stove object.
Stove.stove_ip
The IP address as reported by the stove.
Stove.stove_mdns
The MAC address prefixed with "ihs_" as reported by the stove.
Stove.stove_ssid
The SSID to which the stove is connected.
Methods
@classmethod Stove.create(cls, stove_host, loop=asyncio.get_event_loop(), skip_ident=False)
Create a pystove object asynchronously. This method takes the following arguments:
- stove_host The hostname or IP address of the stove.
- loop Event loop to use for the pystove object.
- skip_ident Skip identification calls to the stove. Speeds up creation of the pystove object but the resulting object will be missing its identifying information.
Returns a pystove object with at least the stove_host
property set. If skip_ident
was set to False
(the default), all other properties should be set as well
This method is a coroutine.
Stove.destroy(self)
Run a cleanup of the Stove object. This method should be called before exiting your program to avoid error messages.
This method is a coroutine.
Stove.get_data(self)
Retrieve information about the current state of the stove. Returns a dict containing processed information about the current state of the stove. Useful for e.g. display purposes as most variables have been processed into readable information or python data types.
This method is a coroutine.
Stove.get_live_data(self)
Retrieve a log of recent temperature and oxygen level data from the stove. Returns a dict with the following structure:
{
pystove.DATA_STOVE_TEMPERATURE: [...],
pystove.DATA_OXYGEN_LEVEL: [...]
}
Each item contains a sequential list with historical sensor data for each minute of the last 2 hours.
This method is a coroutine.
Stove.get_raw_data(self)
Retrieve information about the current state of the stove. Returns a dict containing unprocessed information about the current state of the stove. All information is forwarded as provided by the stove.
This method is a coroutine.
Stove.self_test(self, processed=True)
Start and monitor the self-test routine of the stove. This method will request and return intermediate results every 3 seconds until all tests have either been passed or skipped. The following argument is supported:
- processed Whether the results should be processed into human-readable form. Defaults to
True
.
This method is a generator coroutine.
Stove.set_burn_level(self, burn_level)
Set the burn level on the stove. Returns True
on success.
This method takes the following argument:
- burn_level The burn level to set on the stove. Supported values are 0 through 5.
This method is a coroutine.
Stove.set_night_lowering(self, state=None)
Set or toggle the night lowering option on the stove. Returns True
on success.
This method takes the following argument:
- state The new night lowering setting to set on the stove. Supported values must evaluate to
True
orFalse
. If omitted orNone
(the default), the setting will be toggled.
This method is a coroutine.
Stove.set_night_lowering_hours(self, start=None, end=None)
Set the night lowering hours on the stove. Returns True
on success.
This method takes the following arguments:
- start A
datetime.time
object containing the requested night lowering start time. If omitted orNone
, the start time will not be changed. - end A
datetime.time
object containing the requested night lowering end time. If omitted orNone
, the end time will not be changed.
This method is a coroutine.
Stove.set_remote_refill_alarm(self, state=None)
Set the remote refill alarm. Returns True
on success.
This method takes the following argument:
- state The new remote refill alarm setting to set on the stove. Supported values must evaluate to
True
orFalse
. If omitted orNone
(the default), the setting will be toggled.
This method is a coroutine.
Stove.set_time(self, new_time=datetime.now())
Set the time and date on the stove. Returns True
on success.
This method takes the following argument:
- new_time A
datetime.datetime
object containing the time and date to set on the stove. If omitted, the current time on the local host will be used.
This method is a coroutine.
Stove.start(self)
Switch the stove to Ignition
mode. Returns True
on success.
This method is a coroutine.
Command Line Invocation
Usage: ./pystove_cli.py <options>
Options:
-h, --host <HOST> Required
The IP address or hostname of the stove.
-f, --fast Optional
Run in fast mode (skip ident).
-c, --command <COMMAND> Optional
The command to send to the stove.
If no command is provided, it defaults to show_info.
-v, --value <VALUE> Optional
The value to send to the stove with the supplied command.
Supported commands:
get_data
Retrieve a list of processed configuration values.
get_live_data:
Retrieve historical stove temperature and oxygen level
data from the last 2 hours.
get_raw_data
Retrieve a list of unprocessed configuration values.
self_test
Run stove self test routine and return result.
set_burn_level
Set the burn level of the stove.
This command requires a value between 0 and 5.
set_night_lowering
Set the night lowering option.
This command takes an optional value: 1=on, 0=off
A call without value toggles the setting.
set_night_lowering_hours
Set the night lowering hours on the stove.
This command requires a <value> in the form of <start>-<end>
Both <start> and <end> must be in 24h format H[:MM]
set_remote_refill_alarm
Set the remote refill alarm.
This command takes an optional value: 1=on, 0=off
A call without value toggles the setting.
set_time
Set the time on the stove. Defaults to current time on this system.
Optional value format: YYYY-MM-DD HH:MM:SS
show_info
Show the stove identification information.
start
Set the stove in ignition mode.
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
Built Distribution
File details
Details for the file pystove-0.3a1.tar.gz
.
File metadata
- Download URL: pystove-0.3a1.tar.gz
- Upload date:
- Size: 23.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.1.dev0+g94f810c.d20240510 CPython/3.12.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 326691219cf0cb6f1160df0c32e9422bdd119918c88ba8919458ae60f61fc674 |
|
MD5 | b386896f15664c6e5c098f9c93ca479e |
|
BLAKE2b-256 | e7f5ea51be5b5a425617f091c06b4b81a219e77eee21d60442198fdabb70f71d |
File details
Details for the file pystove-0.3a1-py3-none-any.whl
.
File metadata
- Download URL: pystove-0.3a1-py3-none-any.whl
- Upload date:
- Size: 22.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.1.dev0+g94f810c.d20240510 CPython/3.12.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0a7432f79e7e428ba04f897cb6a23108c294c6bf52dc6fdeb58108eff3408581 |
|
MD5 | ca3a619b5c4e0f13a30b9e636875442f |
|
BLAKE2b-256 | 600c181d21e6b78ba8dcba14be26a7b5accab22898960eb52da44f0f80fc645a |