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

    Interface Ds18b20Reading

    A decoded DS18B20 scratchpad.

    interface Ds18b20Reading {
        alarmHigh: number;
        alarmLow: number;
        celsius: number;
        microCelsius: number;
        rawTemperature: number;
        resolutionBits: number;
    }
    Index
    alarmHigh: number

    The high alarm threshold in whole degrees Celsius.

    alarmLow: number

    The low alarm threshold in whole degrees Celsius.

    celsius: number

    The temperature in degrees Celsius.

    microCelsius: number

    The temperature in micro-degrees Celsius, exact in integer arithmetic.

    rawTemperature: number

    The raw temperature register, 1/16 degree Celsius per count.

    resolutionBits: number

    The configured resolution, as a number of bits: 9, 10, 11, or 12.