Skip to main content

Inepro Metering PRO380 (three-phase)

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

A curated ModDef profile for the Inepro Metering PRO380 (three-phase). Import it as inepro.pro380 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("inepro-pro380.moddef.yaml")
dev, _ := client.New(doc, "inepro-pro380", transport) // your modbus.Transport
v, _ := dev.ReadPoint(ctx, "voltage_l1")
fmt.Println(v)

Measurands

The 9 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
voltageVoltageVRMS voltage; qualify with phase_ref (L1_N, L1_L2, ...)
currentCurrentARMS current; qualify with phase_ref / direction
frequencyFrequencyHzGrid frequency
active_powerActive PowerWInstantaneous real power
reactive_powerReactive PowervarInstantaneous reactive power
apparent_powerApparent PowerVAInstantaneous apparent power
power_factorPower Factor1 (ratio)Ratio of real to apparent power (dimensionless)
energy_activeActive EnergyWhCumulative active energy register
energy_reactiveReactive EnergyvarhCumulative reactive energy register

Source