edilkamin
    Preparing search index...

    Variable setChronoComfortTemperature

    setChronoComfortTemperature: (
        jwtToken: string,
        macAddress: string,
        temperature: number,
    ) => Promise<unknown>

    Type Declaration

      • (jwtToken: string, macAddress: string, temperature: number): Promise<unknown>
      • Sets the comfort temperature target for Chrono Mode. When a schedule slot is set to "Comfort" (value 2), the stove will target this temperature.

        Parameters

        • jwtToken: string

          The JWT token for authentication.

        • macAddress: string

          The MAC address of the device.

        • temperature: number

          Target temperature in degrees (based on device unit setting).

        Returns Promise<unknown>

        • A promise that resolves to the command response.
        // Set comfort temperature to 22°C
        await setChronoComfortTemperature(token, mac, 22);