interface State {
    currentInput: number;
    inputList: TypeFromFields<{
        description: FieldType<string>;
        index: FieldType<number>;
        inputType: FieldType<MediaInput.InputType>;
        name: FieldType<string>;
    }>[];
}

Hierarchy

  • StateType
    • State

Properties

currentInput: number

This attribute shall contain the value of the index field of the currently selected InputInfoStruct.

MatterSpecification.v13.Cluster § 6.9.6.2

inputList: TypeFromFields<{
    description: FieldType<string>;
    index: FieldType<number>;
    inputType: FieldType<MediaInput.InputType>;
    name: FieldType<string>;
}>[]

This attribute shall provide a list of the media inputs supported by the device.

MatterSpecification.v13.Cluster § 6.9.6.1