Body of the DeviceEnergyManagement powerAdjustEnd event

MatterSpecification.v13.Cluster § 9.2.10.2

interface PowerAdjustEndEvent {
    cause: DeviceEnergyManagement.Cause;
    duration: number;
    energyUse: number | bigint;
}

Hierarchy (view full)

Properties

This field shall indicate the reason why the power adjustment session ended.

MatterSpecification.v13.Cluster § 9.2.10.2.1

duration: number = ...

This field shall indicate the number of seconds that the power adjustment session lasted before ending.

MatterSpecification.v13.Cluster § 9.2.10.2.2

energyUse: number | bigint = ...

This field shall indicate the approximate energy used by the ESA during the session.

For example, if the ESA was on and was adjusted to be switched off, then this shall be 0W. If this was a battery inverter that was requested to charge it would have a negative energy use. If this was a normal load that was turned on, then it will have positive value.

MatterSpecification.v13.Cluster § 9.2.10.2.3