Base: {
    attributes: {
        currentMode: Attribute<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: 85;
    name: "RvcCleanMode";
    revision: 2;
} = ...

These elements and properties are present in all RvcCleanMode clusters.

Type declaration

  • Readonlyattributes: {
        currentMode: Attribute<number, any>;
        supportedModes: FixedAttribute<TypeFromFields<{
            label: FieldType<string>;
            mode: FieldType<number>;
            modeTags: FieldType<TypeFromFields<{
                mfgCode: OptionalFieldType<(...)>;
                value: FieldType<(...)>;
            }>[]>;
        }>[], any>;
    }
  • 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 RvcCleanModeCluster 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: 85
  • Readonlyname: "RvcCleanMode"
  • Readonlyrevision: 2