FrequencyComponent: {
    attributes: {
        currentFrequency: Attribute<number, any>;
        maxFrequency: Attribute<number, any>;
        minFrequency: Attribute<number, any>;
    };
    commands: {
        moveToClosestFrequency: Command<TypeFromFields, void, any>;
    };
}

A LevelControlCluster supports these elements if it supports feature Frequency.

Type declaration

  • Readonlyattributes: {
        currentFrequency: Attribute<number, any>;
        maxFrequency: Attribute<number, any>;
        minFrequency: Attribute<number, any>;
    }
    • ReadonlycurrentFrequency: Attribute<number, any>

      Indicates the frequency at which the device is at CurrentLevel. A CurrentFrequency of 0 is unknown.

      MatterSpecification.v13.Cluster § 1.6.6.6

    • ReadonlymaxFrequency: Attribute<number, any>

      Indicates the maximum value of CurrentFrequency that is capable of being assigned. MaxFrequency shall be greater than or equal to MinFrequency. A value of 0 indicates undefined.

      MatterSpecification.v13.Cluster § 1.6.6.8

    • ReadonlyminFrequency: Attribute<number, any>

      Indicates the minimum value of CurrentFrequency that is capable of being assigned. MinFrequency shall be less than or equal to MaxFrequency. A value of 0 indicates undefined.

      MatterSpecification.v13.Cluster § 1.6.6.7

  • Readonlycommands: {
        moveToClosestFrequency: Command<TypeFromFields, void, any>;
    }
    • ReadonlymoveToClosestFrequency: Command<TypeFromFields, void, any>

      MatterSpecification.v13.Cluster § 1.6.7.5