Skip to main content

ABB B23 (B-series)

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

A curated ModDef profile for the ABB B23 (B-series). Import it as abb.b23 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-b23.moddef.yaml")
dev, _ := client.New(doc, "abb-b23", transport) // your modbus.Transport
v, _ := dev.ReadPoint(ctx, "active_energy_import")
fmt.Println(v)

Measurands

The 14 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
energy_reactiveReactive EnergyvarhCumulative reactive energy register
energy_apparentApparent EnergyVAhCumulative apparent energy register
active_powerActive PowerWInstantaneous real power
reactive_powerReactive PowervarInstantaneous reactive power
apparent_powerApparent PowerVAInstantaneous apparent power
voltageVoltageVRMS voltage; qualify with phase_ref (L1_N, L1_L2, ...)
currentCurrentARMS current; qualify with phase_ref / direction
frequencyFrequencyHzGrid frequency
power_factorPower Factor1 (ratio)Ratio of real to apparent power (dimensionless)
fault_codeFault CodeundefinedVendor fault code (enum or integer)
warning_codeWarning CodeundefinedVendor warning code (enum or integer)
alarm_statusAlarm StatusundefinedAlarm state (enum or flag set)
device_statusDevice StatusundefinedOverall device operating status (enum)

Source