Skip to content
EN | DE

hems

The hems section configures external control of consumption and feed-in power. This is used e.g. for implementing German §14a EnWG or §9 EEG regulations. For background and setup details, see External Control.


Defines the type of external control.

Possible values:

  • relay: Connection via switch contact
  • eebus: Connection via the EEBus protocol

Connection via a switch contact (e.g. control box). The contact signals whether a power limitation is active.

hems:
type: relay
maxPower: 8400 # Total power limit when signal is active (in watts)
limit:
source: gpio
function: read
pin: 17

Total power limit in watts that is applied when the signal is active.

Plugin configuration for reading the switch contact. Expected return value: true/1 = limited, false/0 = normal.

Optional plugin configuration for passing the limitation signal through to an external system.

Polling interval for the switch contact. Default: 10s.

For more examples of different connections (GPIO, MQTT, HTTP), see External Control.


Connection via the EEBus protocol. The control box automatically transmits the power limit.

hems:
type: eebus
ski: "1234-5678-90AB-CDEF" # SKI of the control box

SKI (Subject Key Identifier) of the control box. Required for pairing.

The following optional parameters can be set for EEBus communication:

  • contractualConsumptionNominalMax: Contractual maximum consumption power (in watts)
  • failsafeConsumptionActivePowerLimit: Failsafe limit for consumption power (in watts)
  • failsafeProductionActivePowerLimit: Failsafe limit for feed-in power (in watts)
  • failsafeDurationMinimum: Minimum failsafe duration (e.g. 2h)

Optional plugin configuration for passing the limitation signal through to an external system.

Polling interval. Default: 10s.

For setup and pairing details, see External Control.