RfidComponent: {
    events: {
        rfid: OptionalEvent<TypeFromFields<{
            uid: FieldType<Uint8Array>;
        }>, any>;
    };
} = ...

A EnergyEvseCluster supports these elements if it supports feature Rfid.

Type declaration

  • Readonlyevents: {
        rfid: OptionalEvent<TypeFromFields<{
            uid: FieldType<Uint8Array>;
        }>, any>;
    }
    • Readonlyrfid: OptionalEvent<TypeFromFields<{
          uid: FieldType<Uint8Array>;
      }>, any>

      This event shall be generated when a RFID card has been read. This allows a controller to register the card ID and use this to authenticate and start the charging session.

      MatterSpecification.v13.Cluster § 9.3.10.6