MELCloud & MELCloud Home API for Node.js - v48.2.0
    Preparing search index...

    Interface ClassicTilesData<T>

    Wire-format response from Tile/Get2; the optional SelectedDevice carries full device data when a device id was specified.

    interface ClassicTilesData<T extends ClassicDeviceType | null> {
        SelectedDevice: T extends ClassicDeviceType
            ? ClassicGetDeviceData<T>
            : null;
        Tiles: readonly {
            Device: number;
            Offline: boolean;
            Power: boolean;
            RoomTemperature: number;
            RoomTemperature2: number;
            TankWaterTemperature: number;
        }[];
    }

    Type Parameters

    • T extends ClassicDeviceType | null

      Type of the selected device, or null when no device id was specified and SelectedDevice is null.

    Index
    SelectedDevice: T extends ClassicDeviceType ? ClassicGetDeviceData<T> : null
    Tiles: readonly {
        Device: number;
        Offline: boolean;
        Power: boolean;
        RoomTemperature: number;
        RoomTemperature2: number;
        TankWaterTemperature: number;
    }[]