Skip to main content

Webasto NEXT

Status: Vendor Confirmed · Register points: 30 · Transports: Modbus TCP

A curated ModDef profile for the Webasto NEXT. Import it as webasto.next 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("webasto-next.moddef.yaml")
dev, _ := client.New(doc, "webasto-next", transport) // your modbus.Transport
v, _ := dev.ReadPoint(ctx, "evse_error_code")
fmt.Println(v)

Measurands

The 4 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
currentCurrentARMS current; qualify with phase_ref / direction
active_powerActive PowerWInstantaneous real power
energy_activeActive EnergyWhCumulative active energy register
fault_codeFault CodeundefinedVendor fault code (enum or integer)

Source