Skip to main content

Growatt SPH (hybrid storage)

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

A curated ModDef profile for the Growatt SPH (hybrid storage). Import it as growatt.sph 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("growatt-sph.moddef.yaml")
dev, _ := client.New(doc, "growatt-sph", transport) // your modbus.Transport
v, _ := dev.ReadPoint(ctx, "rated_pv_voltage")
fmt.Println(v)

Measurands

The 22 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
inverter_statusInverter StatusundefinedInverter operating state (enum)
pv_powerPV PowerWPV array / string power
pv_voltagePV VoltageVPV array / string voltage
pv_currentPV CurrentAPV array / string current
active_powerActive PowerWInstantaneous real power
apparent_powerApparent PowerVAInstantaneous apparent power
reactive_powerReactive PowervarInstantaneous reactive power
power_factorPower Factor1 (ratio)Ratio of real to apparent power (dimensionless)
frequencyFrequencyHzGrid frequency
voltageVoltageVRMS voltage; qualify with phase_ref (L1_N, L1_L2, ...)
currentCurrentARMS current; qualify with phase_ref / direction
dc_bus_voltageDC Bus VoltageVInternal DC bus voltage
energy_activeActive EnergyWhCumulative active energy register
inverter_temperatureInverter TemperaturedegCInverter internal temperature
device_statusDevice StatusundefinedOverall device operating status (enum)
battery_powerBattery PowerWBattery power (sign per direction)
battery_voltageBattery VoltageVBattery terminal voltage
state_of_chargeState of Charge%Battery charge level
state_of_healthState of Health%Battery health
temperatureTemperaturedegCTemperature; qualify with location (INTERNAL, EXTERNAL, ...)
fault_codeFault CodeundefinedVendor fault code (enum or integer)
warning_codeWarning CodeundefinedVendor warning code (enum or integer)

Source