mysa-js-sdk
    Preparing search index...

    Interface SetPointChange

    Interface representing a temperature setpoint change event for a Mysa device.

    This event is emitted when a device's target temperature setting is modified, providing both the previous and new setpoint values for tracking and logging purposes. The change may be initiated by user interaction, scheduling, or programmatic control through the API.

    interface SetPointChange {
        deviceId: string;
        newSetPoint: number;
        previousSetPoint: number;
    }
    Index

    Properties

    deviceId: string

    Unique identifier of the device whose setpoint was changed

    newSetPoint: number

    The new temperature setpoint value after the change

    previousSetPoint: number

    The previous temperature setpoint value before the change