pyMeterBus icon indicating copy to clipboard operation
pyMeterBus copied to clipboard

Pure Python implementation of the Meter-Bus (M-Bus EN13757-3) protocol.

Results 11 pyMeterBus issues
Sort by recently updated
recently updated
newest added

Hi guys I'm trying to decode this frame 20 44 2D 2C 97 18 58 68 1D 16 **8D** 20 55 82 E2 F5 23 CC EE ED C2 B1...

Bumps [pycryptodome](https://github.com/Legrandin/pycryptodome) from 3.15.0 to 3.19.1. Release notes Sourced from pycryptodome's releases. v3.19.1 - Zeil Resolved issues Fixed a side-channel leakage with OAEP decryption that could be exploited to carry...

dependencies

It looks like my meter replies to the command only if its sent with a prefix of 210: `\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\x5b\x00\x5b\x16` instead of **\x10\x5b\x00\x5b\x16** sent by: `meterbus.send_request_frame(ser, address)` Was wondering if there...

This will send the right dataframe needed for Aestron 630M Mbus meter

I needed to load multiple frames at once for an mbus project over tcp, so I wanted to add support for it. Hope I found a good way to integrate...

I could not figure out how to create and SND_UD long frame. The docs say: 6.4.2 Writing Data to a Slave The master can send data to a slave using...

Since WTelegramSndNr now works (even if it doesn't have support for encryption), it would be a good idea to implement support for a few different USB WMBus receivers. - Adeunis...

Hi I run this code and i get MBusFrameDecodeError: ('empty frame', None) #!/usr/bin/python import serial import meterbus address = 254 serial_port = 'COM3' try: with serial.Serial(serial_port, 115200, bytesize=8, parity='N', stopbits=1,...

ChatGPT4 will happily assist in this e.g. ```python def serial_send(ser: serial.Serial, data: bytes = None, read_echo: bool = False) -> None: """ Sends data through the serial interface and optionally...