Skip to main content

Webasto Live

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

A curated ModDef profile for the Webasto Live. Import it as webasto.live 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-live.moddef.yaml")
dev, _ := client.New(doc, "webasto-live", transport) // your modbus.Transport
v, _ := dev.ReadPoint(ctx, "current_l1")
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
state_of_chargeState of Charge%Battery charge level

Source