node-switchbot
    Preparing search index...

    Interface AirPurifierStatus

    Air Purifier specific types

    interface AirPurifierStatus {
        airQuality?: "excellent" | "good" | "fair" | "poor";
        battery?: number;
        connectionType: ConnectionType;
        deviceId: string;
        fanSpeed?: number;
        mode?: "auto" | "manual" | "sleep";
        pm25?: number;
        power: "on" | "off";
        updatedAt?: Date;
        version?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    airQuality?: "excellent" | "good" | "fair" | "poor"
    battery?: number

    Battery level (0-100)

    connectionType: ConnectionType

    Connection type used to retrieve status

    deviceId: string

    Device ID

    fanSpeed?: number
    mode?: "auto" | "manual" | "sleep"
    pm25?: number
    power: "on" | "off"
    updatedAt?: Date

    Last updated timestamp

    version?: string

    Firmware version