RfidCredentialComponent: {
    attributes: {
        maxRfidCodeLength: FixedAttribute<number, any>;
        minRfidCodeLength: FixedAttribute<number, any>;
        numberOfRfidUsersSupported: FixedAttribute<number, any>;
    };
}

A DoorLockCluster supports these elements if it supports feature RfidCredential.

Type declaration

  • Readonlyattributes: {
        maxRfidCodeLength: FixedAttribute<number, any>;
        minRfidCodeLength: FixedAttribute<number, any>;
        numberOfRfidUsersSupported: FixedAttribute<number, any>;
    }
    • ReadonlymaxRfidCodeLength: FixedAttribute<number, any>

      Indicates the maximum length in bytes of a RFID Code on this device. The value depends on the RFID code range specified by the manufacturer, if media anti-collision identifiers (UID) are used as RFID code, a value of 20 (equals 10 Byte ISO 14443A UID) is recommended.

      MatterSpecification.v13.Cluster § 5.2.9.18

    • ReadonlyminRfidCodeLength: FixedAttribute<number, any>

      Indicates the minimum length in bytes of a RFID Code on this device. The value depends on the RFID code range specified by the manufacturer, if media anti-collision identifiers (UID) are used as RFID code, a value of 8 (equals 4 Byte ISO 14443A UID) is recommended.

      MatterSpecification.v13.Cluster § 5.2.9.19

    • ReadonlynumberOfRfidUsersSupported: FixedAttribute<number, any>

      Indicates the number of RFID users supported.

      MatterSpecification.v13.Cluster § 5.2.9.12