SoCReportingComponent: {
    attributes: {
        batteryCapacity: Attribute<null | number | bigint, any>;
        stateOfCharge: Attribute<null | number, any>;
    };
} = ...

A EnergyEvseCluster supports these elements if it supports feature SoCReporting.

Type declaration

  • Readonlyattributes: {
        batteryCapacity: Attribute<null | number | bigint, any>;
        stateOfCharge: Attribute<null | number, any>;
    }
    • ReadonlybatteryCapacity: Attribute<null | number | bigint, any>

      Indicates the capacity of the EV battery in mWh. This value is always positive.

      MatterSpecification.v13.Cluster § 9.3.8.18

    • ReadonlystateOfCharge: Attribute<null | number, any>

      Indicates the state of charge of the EV battery in steps of 1%. The values are in the 0-100%. This attribute is only available on EVSEs which can read the state of charge from the vehicle and that support the SOC feature. If the StateOfCharge cannot be read from the vehicle it shall be returned with a NULL value.

      MatterSpecification.v13.Cluster § 9.3.8.17