mysa-js-sdk
    Preparing search index...

    Interface Status

    Interface representing the current status of a Mysa device.

    Contains real-time operational data and measurements from the device, including environmental readings and electrical parameters. This data is typically received through status update events from the device.

    interface Status {
        current?: number;
        deviceId: string;
        dutyCycle?: number;
        humidity: number;
        setPoint: number;
        temperature: number;
    }
    Index

    Properties

    current?: number

    Optional electrical current draw measurement in amperes

    deviceId: string

    Unique identifier of the device reporting this status

    dutyCycle?: number

    Optional heating element duty cycle as a percentage (0-100)

    humidity: number

    Current relative humidity percentage reading from the device sensor

    setPoint: number

    Current temperature setpoint setting

    temperature: number

    Current ambient temperature reading from the device sensor