Base: {
    attributes: {
        currentMode: Attribute<number, any>;
        onMode: WritableAttribute<number, any>;
        startUpMode: WritableAttribute<number, any>;
        supportedModes: FixedAttribute<TypeFromFields<{
            label: FieldType<string>;
            mode: FieldType<number>;
            modeTags: FieldType<TypeFromFields<{
                mfgCode: OptionalFieldType<(...)>;
                value: FieldType<(...)>;
            }>[]>;
        }>[], any>;
    };
    commands: {
        changeToMode: Command<TypeFromFields<{
            newMode: FieldType<number>;
        }>, void, any>;
    };
    extensions: readonly [];
    features: {
        onOff: BitFlag;
    };
    id: 81;
    name: "LaundryWasherMode";
    revision: 2;
} = ...

These elements and properties are present in all LaundryWasherMode clusters.

Type declaration

  • Readonlyattributes: {
        currentMode: Attribute<number, any>;
        onMode: WritableAttribute<number, any>;
        startUpMode: WritableAttribute<number, any>;
        supportedModes: FixedAttribute<TypeFromFields<{
            label: FieldType<string>;
            mode: FieldType<number>;
            modeTags: FieldType<TypeFromFields<{
                mfgCode: OptionalFieldType<(...)>;
                value: FieldType<(...)>;
            }>[]>;
        }>[], any>;
    }
    • ReadonlycurrentMode: Attribute<number, any>

      MatterSpecification.v13.Cluster § 8.5.5

    • ReadonlyonMode: WritableAttribute<number, any>

      MatterSpecification.v13.Cluster § 8.5.5

    • ReadonlystartUpMode: WritableAttribute<number, any>

      If this attribute is supported, the device SHOULD initially set this to one of the supported modes that has the Normal tag associated with it. See the Mode Base cluster specification for full details about the StartUpMode attribute.

      MatterSpecification.v13.Cluster § 8.5.5.1

    • ReadonlysupportedModes: FixedAttribute<TypeFromFields<{
          label: FieldType<string>;
          mode: FieldType<number>;
          modeTags: FieldType<TypeFromFields<{
              mfgCode: OptionalFieldType<(...)>;
              value: FieldType<(...)>;
          }>[]>;
      }>[], any>

      MatterSpecification.v13.Cluster § 8.5.5

  • Readonlycommands: {
        changeToMode: Command<TypeFromFields<{
            newMode: FieldType<number>;
        }>, void, any>;
    }
    • ReadonlychangeToMode: Command<TypeFromFields<{
          newMode: FieldType<number>;
      }>, void, any>

      This command is used to change device modes.

      On receipt of this command the device shall respond with a ChangeToModeResponse command.

      MatterSpecification.v13.Cluster § 1.10.7.1

  • Readonlyextensions: readonly []

    This metadata controls which LaundryWasherModeCluster elements matter.js activates for specific feature combinations.

  • Readonlyfeatures: {
        onOff: BitFlag;
    }
    • ReadonlyonOff: BitFlag

      OnOff

      This feature creates a dependency between an OnOff cluster instance and this cluster instance on the same endpoint. See OnMode for more information.

      MatterSpecification.v13.Cluster § 1.10.4.1

  • Readonlyid: 81
  • Readonlyname: "LaundryWasherMode"
  • Readonlyrevision: 2