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

    Interface TemperatureRange

    A setpoint interval in °C, inclusive on both ends — the cross-dialect read twin of the raw bounds each API advertises: Classic maps its MinTemp*/MaxTemp* wire fields onto it, Home its camelCase minTemp*/maxTemp* capabilities.

    interface TemperatureRange {
        max: number;
        min: number;
    }
    Index
    max: number

    Highest settable temperature, in °C.

    min: number

    Lowest settable temperature, in °C.