TlvEvNotDetectedEvent: ObjectSchema<{
    sessionDuration: FieldType<number>;
    sessionEnergyCharged: FieldType<number | bigint>;
    sessionEnergyDischarged: OptionalFieldType<number | bigint>;
    sessionId: FieldType<number>;
    state: FieldType<EnergyEvse.State>;
}> = ...

Body of the EnergyEvse evNotDetected event

Type declaration

  • sessionDuration: FieldType<number>

    This field shall indicate the total duration of the session, from the start of the session when the EV was plugged in, until it was unplugged.

    MatterSpecification.v13.Cluster § 9.3.10.2.3

  • sessionEnergyCharged: FieldType<number | bigint>

    This field shall indicate the total amount of energy transferred from the EVSE to the EV during the session. This value shall always be positive.

    Note that if bi-directional charging occurs during the session, then this value shall only include the sum of energy transferred from the EVSE to the EV, and shall NOT be a net value of charging and discharging energy.

    MatterSpecification.v13.Cluster § 9.3.10.2.4

  • sessionEnergyDischarged: OptionalFieldType<number | bigint>

    This field shall indicate the total amount of energy transferred from the EV to the EVSE during the session. This value shall always be positive.

    Note that if bi-directional discharging occurs during the session, then this value shall only include the sum of energy transferred from the EV to the EVSE, and shall NOT be a net value of charging and discharging energy.

    MatterSpecification.v13.Cluster § 9.3.10.2.5

  • sessionId: FieldType<number>

    This field shall indicate the current value of the SessionID attribute.

    MatterSpecification.v13.Cluster § 9.3.10.2.1

  • state: FieldType<EnergyEvse.State>

    This field shall indicate the value of the State attribute prior to the EV not being detected.

    MatterSpecification.v13.Cluster § 9.3.10.2.2

MatterSpecification.v13.Cluster § 9.3.10.2