Skip to main content

Shelly Pro 3EM (three-phase)

Status: Unverified · Register points: 30 · Transports: Modbus TCP

A curated ModDef profile for the Shelly Pro 3EM (three-phase). Import it as shelly.pro-3em or load the .moddef.yaml directly.

Connect to one over Modbus TCP and watch its values live in the device dashboard.

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("shelly-pro-3em.moddef.yaml")
dev, _ := client.New(doc, "shelly-pro-3em", transport) // your modbus.Transport
v, _ := dev.ReadPoint(ctx, "neutral_current")
fmt.Println(v)

Measurands

The 7 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
active_powerActive PowerWInstantaneous real power
apparent_powerApparent PowerVAInstantaneous apparent power
power_factorPower Factor1 (ratio)Ratio of real to apparent power (dimensionless)
frequencyFrequencyHzGrid frequency
energy_activeActive EnergyWhCumulative active energy register

Source