EnergyEvseTrait.Feature

data class EnergyEvseTrait.Feature


EnergyEvse cluster FeatureMap.

Summary

Public constructors

Feature(
    chargingPreferences: Boolean,
    soCReporting: Boolean,
    plugAndCharge: Boolean,
    rfid: Boolean,
    v2x: Boolean
)

Creates the Feature data class.

Public functions

open ULong

Convert this ClusterBitmap to raw (bytes) format

Public properties

String

Name of the Matter bitmap, in UpperCamelCase, e.g. "OnOffControlBitmap" from OnOff Cluster.

Boolean

The EVSE supports storing user charging preferences.

Boolean

The EVSE supports Plug & Charge (PnC) functionality.

Boolean

The EVSE is fitted with an RFID reader.

Boolean

The EVSE supports reporting of the vehicle's State of Charge (SoC).

String

Trait identifier of the Matter Cluster that defines the bitmap Data Type.

Boolean

The EVSE supports bidirectional charging and discharging.

Public constructors

Feature

Feature(
    chargingPreferences: Boolean = false,
    soCReporting: Boolean = false,
    plugAndCharge: Boolean = false,
    rfid: Boolean = false,
    v2x: Boolean = false
)

Creates the Feature data class.

Public functions

toRaw

open fun toRaw(): ULong

Convert this ClusterBitmap to raw (bytes) format

Public properties

bitmapName

val bitmapNameString

Name of the Matter bitmap, in UpperCamelCase, e.g. "OnOffControlBitmap" from OnOff Cluster.

chargingPreferences

val chargingPreferencesBoolean

The EVSE supports storing user charging preferences.

plugAndCharge

val plugAndChargeBoolean

The EVSE supports Plug & Charge (PnC) functionality.

rfid

val rfidBoolean

The EVSE is fitted with an RFID reader.

soCReporting

val soCReportingBoolean

The EVSE supports reporting of the vehicle's State of Charge (SoC).

traitId

val traitIdString

Trait identifier of the Matter Cluster that defines the bitmap Data Type. Refer to ClusterId.traitId for the format.

v2x

val v2xBoolean

The EVSE supports bidirectional charging and discharging.