Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge contributions from ontology-mimesis-badly #7

Open
wants to merge 9 commits into
base: master
Choose a base branch
from
Open
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "asyncio-vedirect-mqtt"
version = "1.2.0"
version = "1.2.4"
description = "Publish serial data from ve.direct to an MQTT broker"
authors = ["Mathias Hedberg <[email protected]>"]
license = "GPL-2.0-only"
Expand Down
1 change: 1 addition & 0 deletions src/asyncio_vedirect_mqtt/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ def main():
parser.add_argument('--tty', help='Serial port with incoming ve.direct data', required=True)
parser.add_argument('--windowing', help='How many values should be included in the sliding moving average', type=int, default=60)
parser.add_argument('--device', help='Unique name of the device', required=True)
parser.add_argument('--type', help='Device type, "mppt" or "shunt"', required=True)
parser.add_argument('-v', '--verbose', action='store_true', help='Run with verbose logging')
parser.add_argument('--timeout', help='Serial port read timeout', type=int, default='60')
parser.add_argument('--broker', help='MQTT broker hostname', type=str, required=True)
Expand Down
Loading