Vallox.js
    Preparing search index...

    Interface FaultEntry

    A single fault entry from the unit's fault log.

    interface FaultEntry {
        code: number;
        description: string;
        index: number;
        isActive: boolean;
    }
    Index
    code: number

    Numeric fault code.

    description: string

    Human-readable description of the fault, or 'Unknown fault' if code is unrecognised.

    index: number

    Zero-based fault index (0–9).

    isActive: boolean

    True if the fault is still active; false if it has been solved/acknowledged.