DoorLockTrait.DlSupportedOperatingModes

data class DoorLockTrait.DlSupportedOperatingModes


This bitmap contains all operating bits of the Operating Mode Attribute supported by the lock.

Summary

Public constructors

DlSupportedOperatingModes(
    normal: Boolean,
    vacation: Boolean,
    privacy: Boolean,
    noRemoteLockUnlock: Boolean,
    passage: Boolean
)

Creates the DlSupportedOperatingModes 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

No remote lock or unlock.

Boolean

Normal operating mode.

Boolean

Passage operating mode.

Boolean

Privacy operating mode.

String

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

Boolean

Vacation operating mode.

Public constructors

DlSupportedOperatingModes

DlSupportedOperatingModes(
    normal: Boolean = false,
    vacation: Boolean = false,
    privacy: Boolean = false,
    noRemoteLockUnlock: Boolean = false,
    passage: Boolean = false
)

Creates the DlSupportedOperatingModes 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.

noRemoteLockUnlock

val noRemoteLockUnlockBoolean

No remote lock or unlock.

normal

val normalBoolean

Normal operating mode.

passage

val passageBoolean

Passage operating mode.

privacy

val privacyBoolean

Privacy operating mode.

traitId

val traitIdString

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

vacation

val vacationBoolean

Vacation operating mode.