ResetComponent: {
    attributes: {
        latch: FixedAttribute<number, any>;
    };
    commands: {
        reset: Command<., void, any>;
    };
}

A DishwasherAlarmCluster supports these elements if it supports feature Reset.

Type declaration

  • Readonlyattributes: {
        latch: FixedAttribute<number, any>;
    }
    • Readonlylatch: FixedAttribute<number, any>

      Indicates a bitmap where each bit set in the Latch attribute shall indicate that the corresponding alarm will be latched when set, and will not reset to inactive when the underlying condition which caused the alarm is no longer present, and so requires an explicit reset using the Reset command.

      MatterSpecification.v13.Cluster § 1.15.6.2

  • Readonlycommands: {
        reset: Command<., void, any>;
    }
    • Readonlyreset: Command<., void, any>

      This command resets active and latched alarms (if possible). Any generated Notify event shall contain fields that represent the state of the server after the command has been processed.

      MatterSpecification.v13.Cluster § 1.15.7.1