Body of the EnergyEvse energyTransferStarted event

MatterSpecification.v13.Cluster § 9.3.10.3

interface EnergyTransferStartedEvent {
    maximumCurrent: number | bigint;
    sessionId: number;
    state: EnergyEvse.State;
}

Hierarchy (view full)

Properties

maximumCurrent: number | bigint = ...

This field shall indicate the value of the maximum charging or discharging current at the time the event was generated.

This field is signed. A positive value indicates the EV has been enabled for charging and the value is taken directly from the MaximumChargeCurrent attribute.

A negative value indicates that the EV has been enabled for discharging and the value can be taken from the MaximumDischargeCurrent attribute with its sign inverted. i.e. if the MaximumDischargeCurrent was 32000mA, this would be represented here as -32000mA.

MatterSpecification.v13.Cluster § 9.3.10.3.3

sessionId: number = ...

This field shall indicate the value of the SessionID attribute at the time the event was generated.

MatterSpecification.v13.Cluster § 9.3.10.3.1

state: EnergyEvse.State = ...

This field shall indicate the value of the State attribute at the time the event was generated.

MatterSpecification.v13.Cluster § 9.3.10.3.2