Skip to main content

ABB Terra AC Wallbox

Status: Vendor Confirmed · Register points: 32 · Transports: Modbus RTU, Modbus TCP

A curated ModDef profile for the ABB Terra AC Wallbox. Import it as abb.terra-ac 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("abb-terra-ac.moddef.yaml")
dev, _ := client.New(doc, "abb-terra-ac", transport) // your modbus.Transport
v, _ := dev.ReadPoint(ctx, "user_settable_max_current")
fmt.Println(v)

Measurands

The 6 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
voltageVoltageVRMS voltage; qualify with phase_ref (L1_N, L1_L2, ...)
active_powerActive PowerWInstantaneous real power
energy_activeActive EnergyWhCumulative active energy register
fault_codeFault CodeundefinedVendor fault code (enum or integer)
device_statusDevice StatusundefinedOverall device operating status (enum)

Source