Skip to content

Releases: ndokter/dsmr_parser

v0.14

08 Oct 20:18
Compare
Choose a tag to compare
  • Changed serial reading to reduce CPU usage (pr #37).

v0.13

08 Oct 20:19
Compare
Choose a tag to compare
  • Fix DSMR v5.0 serial settings which were not used (pr #33).

v0.12

23 Sep 11:01
9b09969
Compare
Choose a tag to compare
  • Add serial settings for DSMR v5.0 (pr #31).
  • Lux-creos-obis-1.8.0 (pr #32).

v0.11

18 Sep 10:10
Compare
Choose a tag to compare

v0.10

05 Jun 19:24
Compare
Choose a tag to compare
  • bugix: don't force full telegram signatures (issue #25)
  • removed unused code for automatic telegram detection as this needs reworking after the fix mentioned above
  • InvalidChecksumError's are logged as warning instead of error.

v0.9

12 May 19:46
Compare
Choose a tag to compare
  • added DSMR v5 serial settings

v0.8

26 Jan 20:26
Compare
Choose a tag to compare
  • added support for DSMR v3
  • added support for DSMR v5

IMPORTANT: this release has the following backwards incompatible changes:

  • Removed TelegramParserV2_2 in favor of TelegramParser
  • Removed TelegramParserV4 in favor of TelegramParser

v0.7

14 Jan 15:39
Compare
Choose a tag to compare
  • Internal refactoring related to the way clients feed their data into the parse module. Clients can now supply the telegram data in single characters, lines (which was common) or complete telegram strings (issue #17).

IMPORTANT: this release has the following backwards incompatible changes:

  • Client related imports from dsmr_parser.serial and dsmr_parser.protocol have been moved to dsmr_parser.clients (import these from the clients/__init__.py module)
  • The .parse() method of TelegramParser, TelegramParserV2_2, TelegramParserV4 now accepts a string containing the entire telegram (including \r\n characters) and not a list

v0.6

04 Jan 19:15
Compare
Choose a tag to compare
  • Fixed bug in CRC checksum verification for the asyncio client (pull request #15)
  • Support added for TCP connections using the asyncio client (pull request #12)

v0.5

04 Jan 19:14
Compare
Choose a tag to compare
  • CRC checksum verification for DSMR v4 telegrams (issue #10)