CompleteInstance: MutableCluster<{
    attributes: {
        acceptedCommandList: Attribute<.[], never>;
        attributeList: Attribute<.[], never>;
        clusterRevision: Attribute<number, never>;
        currentMode: Attribute<number, any>;
        featureMap: Attribute<TypeFromPartialBitSchema, never>;
        generatedCommandList: Attribute<.[], never>;
        onMode: WritableAttribute<number | null, any> & {
            isConditional: true;
            mandatoryIf: [] | [{
                onOff: boolean;
            }];
            optional: true;
            optionalIf: [] | ConditionalFeatureList;
        };
        startUpMode: OptionalWritableAttribute<number | null, any>;
        supportedModes: FixedAttribute<.[], any>;
    };
    commands: {
        changeToMode: Command<., void, any>;
    };
    features: {
        onOff: BitFlag;
    };
    id: @matter/general;
    name: "DeviceEnergyManagementMode";
    revision: 1;
}, []>

Type declaration

  • Readonlyattributes: {
        acceptedCommandList: Attribute<.[], never>;
        attributeList: Attribute<.[], never>;
        clusterRevision: Attribute<number, never>;
        currentMode: Attribute<number, any>;
        featureMap: Attribute<TypeFromPartialBitSchema, never>;
        generatedCommandList: Attribute<.[], never>;
        onMode: WritableAttribute<number | null, any> & {
            isConditional: true;
            mandatoryIf: [] | [{
                onOff: boolean;
            }];
            optional: true;
            optionalIf: [] | ConditionalFeatureList;
        };
        startUpMode: OptionalWritableAttribute<number | null, any>;
        supportedModes: FixedAttribute<.[], any>;
    }
    • ReadonlyacceptedCommandList: Attribute<.[], never>
    • ReadonlyattributeList: Attribute<.[], never>
    • ReadonlyclusterRevision: Attribute<number, never>
    • ReadonlycurrentMode: Attribute<number, any>
    • ReadonlyfeatureMap: Attribute<TypeFromPartialBitSchema, never>
    • ReadonlygeneratedCommandList: Attribute<.[], never>
    • ReadonlyonMode: WritableAttribute<number | null, any> & {
          isConditional: true;
          mandatoryIf: [] | [{
              onOff: boolean;
          }];
          optional: true;
          optionalIf: [] | ConditionalFeatureList;
      }
    • ReadonlystartUpMode: OptionalWritableAttribute<number | null, any>
    • ReadonlysupportedModes: FixedAttribute<.[], any>
  • Readonlycommands: {
        changeToMode: Command<., void, any>;
    }
    • ReadonlychangeToMode: Command<., 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

  • 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: @matter/general
  • Readonlyname: "DeviceEnergyManagementMode"
  • Readonlyrevision: 1