Skip to main content

Iskra WM3M4 (MID EV meter)

Status: Vendor Confirmed · Register points: 39 · Transports: Modbus RTU

A curated ModDef profile for the Iskra WM3M4 (MID EV meter). Import it as iskra.wm3m4 or load the .moddef.yaml directly.

Usage

Load the profile, bind a transport, and read a point by name. The runtime applies the offset, scaling, byte order, and sentinels from the definition.

doc, _ := moddef.Load("iskra-wm3m4.moddef.yaml")
dev, _ := client.New(doc, "iskra-wm3m4", transport) // your modbus.Transport
v, _ := dev.ReadPoint(ctx, "internal_temperature")
fmt.Println(v)

Measurands

The 2 semantic quantities this device reports, each linked to the measurand catalog. Query a device by measurand instead of a raw point when you want portable code.

Base quantityNameUnitDescription
energy_activeActive EnergyWhCumulative active energy register
temperatureTemperaturedegCTemperature; qualify with location (INTERNAL, EXTERNAL, ...)

Source