diff --git a/README.md b/README.md index 302aad3..504ac3f 100644 --- a/README.md +++ b/README.md @@ -194,6 +194,14 @@ python -m pyduro [discover] The CLI will exit with 0 if a burner is found, 1 otherwise. +### Get the status of a burner + +```bash +python -m pyduro -b -s -p status +``` + +This will output a list of burner parameters and their values. + ### Get information from a burner ```bash diff --git a/setup.py b/setup.py index 2c83b3a..4de9e09 100644 --- a/setup.py +++ b/setup.py @@ -36,5 +36,5 @@ py_modules=[], python_requires=">=3.6", url="https://github.com/clementprevot/pyduro", - version="3.0.0", + version="3.1.0", )