pamoja for TypeScript - v0.1.17
    Preparing search index...

    Interface Sht3xStatus

    A decoded SHT3x status register.

    interface Sht3xStatus {
        alertPending: boolean;
        bits: number;
        commandFailed: boolean;
        heaterOn: boolean;
        humidityTrackingAlert: boolean;
        resetDetected: boolean;
        temperatureTrackingAlert: boolean;
        writeChecksumFailed: boolean;
    }
    Index
    alertPending: boolean

    Whether at least one alert condition is pending.

    bits: number

    The 16-bit status word the flags were read from.

    commandFailed: boolean

    Whether the last command could not be processed.

    heaterOn: boolean

    Whether the on-die heater is running.

    humidityTrackingAlert: boolean

    Whether a humidity tracking alert is set.

    resetDetected: boolean

    Whether the part has reset since the flag was last cleared.

    temperatureTrackingAlert: boolean

    Whether a temperature tracking alert is set.

    writeChecksumFailed: boolean

    Whether the last write failed its checksum.