mysa-js-sdk
    Preparing search index...

    Interface SupportedCaps

    Supported capabilities and features for air conditioning devices.

    Defines the operational parameters and available functions for AC units, including temperature ranges, operating modes, and supported control keys.

    interface SupportedCaps {
        fanSpeeds?: number[];
        keys: number[];
        modes: {
            [modeId: string]: { fanSpeeds?: number[]; temperatures: number[] };
        };
        tempRange: [number, number];
        version: string;
    }
    Index
    fanSpeeds?: number[]

    Optional device-specific fan-speed fn values, ordered by canonical fan speed ([auto, low, medium, high, max]). E.g. [1, 2, 4, 6] for CodeNum=1117 devices means auto=1, low=2, medium=4, high=6. When absent, a legacy universal mapping is assumed.

    keys: number[]

    Array of supported remote control key codes

    modes: { [modeId: string]: { fanSpeeds?: number[]; temperatures: number[] } }

    Available operating modes with their supported temperature settings

    tempRange: [number, number]

    Temperature range as [minimum, maximum] in device units

    version: string

    Version string of the capability definition