mysa-js-sdk
    Preparing search index...

    Interface representing a device setpoint change notification from a Mysa device.

    This message is sent when a device's temperature setpoint has been modified, providing information about the source of the change and both the previous and new setpoint values for tracking and logging purposes.

    interface DeviceSetpointChange {
        Device: string;
        MsgType: DEVICE_SETPOINT_CHANGE;
        Next: number;
        Prev: number;
        Source: number;
        Timestamp: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    Device: string

    Device identifier string

    The strongly-typed message type identifier

    Next: number

    New temperature setpoint value after the change

    Prev: number

    Previous temperature setpoint value before the change

    Source: number

    Source identifier indicating what initiated the setpoint change (user, schedule, etc.)

    Timestamp: number

    Unix timestamp when the message was created