CompleteInstance: MutableCluster<{
    attributes: Merge<{
        currentOutput: Attribute<number, any>;
        outputList: Attribute<TypeFromFields<{
            index: FieldType<number>;
            name: FieldType<string>;
            outputType: FieldType<AudioOutput.OutputType>;
        }>[], any>;
    }, GlobalAttributes<{
        nameUpdates: BitFlag;
    }>>;
    commands: {
        renameOutput: Command<TypeFromFields<{
            index: FieldType<number>;
            name: FieldType<string>;
        }>, void, any> & {
            isConditional: true;
            mandatoryIf: [] | [{
                nameUpdates: boolean;
            }];
            optional: true;
            optionalIf: [] | ConditionalFeatureList<BitSchema>;
        };
        selectOutput: Command<TypeFromFields<{
            index: FieldType<number>;
        }>, void, any>;
    };
    features: {
        nameUpdates: BitFlag;
    };
    id: Branded<1291, "ClusterId">;
    name: "AudioOutput";
    revision: 1;
}, []> = ...

Type declaration

  • Readonlyattributes: Merge<{
        currentOutput: Attribute<number, any>;
        outputList: Attribute<TypeFromFields<{
            index: FieldType<number>;
            name: FieldType<string>;
            outputType: FieldType<AudioOutput.OutputType>;
        }>[], any>;
    }, GlobalAttributes<{
        nameUpdates: BitFlag;
    }>>
  • Readonlycommands: {
        renameOutput: Command<TypeFromFields<{
            index: FieldType<number>;
            name: FieldType<string>;
        }>, void, any> & {
            isConditional: true;
            mandatoryIf: [] | [{
                nameUpdates: boolean;
            }];
            optional: true;
            optionalIf: [] | ConditionalFeatureList<BitSchema>;
        };
        selectOutput: Command<TypeFromFields<{
            index: FieldType<number>;
        }>, void, any>;
    }
    • ReadonlyrenameOutput: Command<TypeFromFields<{
          index: FieldType<number>;
          name: FieldType<string>;
      }>, void, any> & {
          isConditional: true;
          mandatoryIf: [] | [{
              nameUpdates: boolean;
          }];
          optional: true;
          optionalIf: [] | ConditionalFeatureList<BitSchema>;
      }
    • ReadonlyselectOutput: Command<TypeFromFields<{
          index: FieldType<number>;
      }>, void, any>

      Upon receipt, this shall change the output on the device to the output at a specific index in the Output List.

      Note that when the current output is set to an output of type HDMI, adjustments to volume via a Speaker endpoint on the same node may cause HDMI volume up/down commands to be sent to the given HDMI output.

      MatterSpecification.v13.Cluster § 6.5.7.1

  • Readonlyfeatures: {
        nameUpdates: BitFlag;
    }
    • ReadonlynameUpdates: BitFlag

      NameUpdates

      Supports updates to output names

  • Readonlyid: Branded<1291, "ClusterId">
  • Readonlyname: "AudioOutput"
  • Readonlyrevision: 1