Skip to content

Commit 51fa1f8

Browse files
committed
Feature release 2024.02.1
1 parent 7c964d8 commit 51fa1f8

File tree

6 files changed

+25
-7
lines changed

6 files changed

+25
-7
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,19 @@
11

2+
## [2024.02.1] - 2024-02-28 Feature Release
3+
4+
- Read input register
5+
6+
- Basic support of big and little endian registers
7+
8+
- Read multi-byte value in big and little endian order
9+
10+
- Fix the default value of length to 1 ( as in the readme)
11+
12+
13+
## [2023.10.6] - 2023-10-22 Bugfix Release
14+
15+
- Fixed pollms was ignored
16+
217
## [2023.10.5] - 2023-10-22 Bugfix Release
318

419
- Fixed missing message retain

CONTRIBUTORS.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Contributors
2+
3+
## Special thanks for all the people who had helped this project so far:
4+
5+
* [Philippe Rgaux](https://github.com/PhilippeRigaux)
6+
7+

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ VERSION = $(shell poetry version -s)
33

44
GITHUBUSER = mazocode
55

6-
ARCHS = linux/amd64 linux/arm/v6 linux/arm/v7 linux/arm64/v8
6+
ARCHS = linux/amd64 linux/arm linux/arm/v6 linux/arm/v7 linux/arm64/v8
77

88
null =
99
space = $(null) $(null)

README.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,6 @@ This is a gateway between Modbus and MQTT. It was originally developed to read r
66
can read from one or more Modbus TCP gateways (e.g. the Waveshare RS485 to Ethernet) simultaneously. The state of the coils can be published as a json message and their
77
state can also be changed with a json message sent to the rpc topic.
88

9-
## Changes from the upstream version
10-
1) Read input register
11-
2) Basic support of big and little endian registers
12-
3) Read multi-byte value in big and little endian order
13-
4) Fix the default value of length to 1 ( as in the readme)
149

1510
## Configuration
1611

modbus2mqtt.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -479,6 +479,7 @@ def main(argv):
479479
int(source.get("port", 502)),
480480
schema[source["schema"]],
481481
int(source.get("unitid", 1)),
482+
pollms=int(source.get("pollms", 1000)),
482483
topic_prefix=source.get("topic_prefix", None),
483484
enabled=bool(source.get("enabled", True))
484485
)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "modbus2mqtt"
3-
version = "2023.10.5"
3+
version = "2024.02.1"
44
description = "Gateway between Modbus TCP devices and MQTT."
55
authors = ["Marcus Zoller <mazocode@users.noreply.github.com>"]
66
license = "MIT"

0 commit comments

Comments
 (0)