Code Monkey home page Code Monkey logo

Comments (2)

kylethedude avatar kylethedude commented on June 9, 2024

The rawToCelcius() and rawToFahrenheit() functions (which get called when you grab the temperature) compares the raw value (fix point scaled -7) out of the device to constant DEVICE_DISCONNECTED_RAW (-2032). I couldn't quickly figure how this constant was derived, but it's wrong (at least for a 12-bit resolution DS12B20). If the output of the device is less than this constant, the DEVICE_DISCONNECTED_C (-127) or DEVICE_DISCONNECTED_F (-196.6) constant gets returned.

If we convert the constant, which is supposed to be the lowest allowed value, to a temperature:

-2032 * 2^-7 = -15.875C = 3.425F

Since the lowest temperature the device can produce is actually -55C, the correct value for this constant should be -7040:

-55 * 2^7 = -7040

Therefore, in file DallasTemperature.h, if you change the value for constant DEVICE_DISCONNECTED_RAW from -2032 to -7040, the library will report temperatures down to -55C.

from arduino-temperature-control-library.

milesburton avatar milesburton commented on June 9, 2024

See https://github.com/milesburton/Arduino-Temperature-Control-Library/tree/tommi-tuovila-temperature-fix

from arduino-temperature-control-library.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.