enum

Matter::Cluster::Definitions::DoorLock::OperationSource

Inherits Enum < Comparable < Value < Object

The OperationSource enumeration shall indicate the source of the Lock/Unlock operation performed.

5.2.6.14. PIN/RFID Code Format

The PIN/RFID codes defined in this specification are all octet strings.

All value in the PIN/RFID code shall be ASCII encoded regardless if the PIN/RFID codes are number or characters. For example, code of “1, 2, 3, 4” shall be represented as 0x31, 0x32, 0x33, 0x34.

Constants

Unspecified = 0_u8
Manual = 1_u8
ProprietaryRemote = 2_u8
Keypad = 3_u8
Auto = 4_u8
Button = 5_u8
Schedule = 6_u8
Remote = 7_u8
Rfid = 8_u8
Biometric = 9_u8
Aliro = 10_u8

Instance methods

aliro?

Returns true if this enum value equals Aliro

Source
auto?

Returns true if this enum value equals Auto

Source
biometric?

Returns true if this enum value equals Biometric

Source
button?

Returns true if this enum value equals Button

Source
keypad?

Returns true if this enum value equals Keypad

Source
manual?

Returns true if this enum value equals Manual

Source
proprietary_remote?

Returns true if this enum value equals ProprietaryRemote

Source
remote?

Returns true if this enum value equals Remote

Source
rfid?

Returns true if this enum value equals Rfid

Source
schedule?

Returns true if this enum value equals Schedule

Source
unspecified?

Returns true if this enum value equals Unspecified

Source