homebridge
    Preparing search index...

    Interface RvcOperationalState

    RVC (Robotic Vacuum Cleaner) Operational State

    interface RvcOperationalState {
        countdownTime?: number | null;
        currentPhase?: number | null;
        operationalError?: {
            errorStateDetails?: string;
            errorStateId: number;
            errorStateLabel?: string;
        };
        operationalState?: number;
        operationalStateList?: {
            operationalStateId: number;
            operationalStateLabel?: string;
        }[];
        phaseList?: string[]
        | null;
    }
    Index

    Properties

    countdownTime?: number | null
    currentPhase?: number | null
    operationalError?: {
        errorStateDetails?: string;
        errorStateId: number;
        errorStateLabel?: string;
    }
    operationalState?: number
    operationalStateList?: {
        operationalStateId: number;
        operationalStateLabel?: string;
    }[]
    phaseList?: string[] | null