This defines conformance to the Video Remote Control device type.

A Video Remote Control is a client that can control a Video Player, for example, a traditional universal remote control.

MatterSpecification.v13.Device § 10.7

interface VideoRemoteControlDevice {
    behaviors: {};
    defaults: StateOf<{}>;
    deviceClass: DeviceClassification;
    deviceRevision: number;
    deviceType: DeviceTypeId;
    name: "VideoRemoteControl";
    requirements: typeof VideoRemoteControlRequirements;
    set(defaults: InputStateOf<{}>): With<For<{
        behaviors: {};
        deviceRevision: 2;
        deviceType: 42;
        name: "VideoRemoteControl";
        requirements: typeof VideoRemoteControlRequirements;
    }>, {}>;
    with<const BL>(...behaviors: BL): With<For<{
        behaviors: {};
        deviceRevision: 2;
        deviceType: 42;
        name: "VideoRemoteControl";
        requirements: typeof VideoRemoteControlRequirements;
    }>, With<{}, BL>>;
}

Hierarchy (view full)

Properties

behaviors: {}
defaults: StateOf<{}>

Access default state values.

deviceRevision: number
deviceType: DeviceTypeId
name
requirements: typeof VideoRemoteControlRequirements

Methods

  • Define an endpoint like this one with different defaults. Only updates values present in the input object.

    Parameters

    Returns With<For<{
        behaviors: {};
        deviceRevision: 2;
        deviceType: 42;
        name: "VideoRemoteControl";
        requirements: typeof VideoRemoteControlRequirements;
    }>, {}>

  • Define an endpoint like this one with additional and/or replacement server behaviors.

    Type Parameters

    • const BL extends List

    Parameters

    • Rest...behaviors: BL

    Returns With<For<{
        behaviors: {};
        deviceRevision: 2;
        deviceType: 42;
        name: "VideoRemoteControl";
        requirements: typeof VideoRemoteControlRequirements;
    }>, With<{}, BL>>