GY-63_MS5611/libraries/DS18B20_INT
2021-04-07 13:31:22 +02:00
..
.github/workflows update libs 2021-04-07 13:31:22 +02:00
examples/DS18B20_INT 2021-01-29 2021-01-29 12:31:58 +01:00
test 2021-01-29 2021-01-29 12:31:58 +01:00
.arduino-ci.yml 2021-01-29 2021-01-29 12:31:58 +01:00
DS18B20_INT.cpp 2021-01-29 2021-01-29 12:31:58 +01:00
DS18B20_INT.h 2021-01-29 2021-01-29 12:31:58 +01:00
keywords.txt 2021-01-29 2021-01-29 12:31:58 +01:00
library.json 2021-01-29 2021-01-29 12:31:58 +01:00
library.properties 2021-01-29 2021-01-29 12:31:58 +01:00
LICENSE 2021-01-29 2021-01-29 12:31:58 +01:00
README.md 2021-01-29 2021-01-29 12:31:58 +01:00

Arduino CI License: MIT GitHub release

DS18B20_INT

Minimalistic library for the DS18B20 temperature sensor.

Description

This DS18B20 library is a minimalistic library for a DS18B20 sensor. It will give only temperatures in whole degrees C. Goal is to minimize footprint.

If you need more functions or control over the DS18B20 family I refer to the library of Miles Burton - https://github.com/milesburton/Arduino-Temperature-Control-Library or to

Interface

This DS18B20_INT library supports only the DS18B20, only one sensor per pin, no parasite mode, no Fahrenheit and no alarm functions. The only feature the class supports is the asynchronous reading of the temperature by means of three core functions:

  • DS18B20_INT(onewire) constructor needs a reference to OneWire object.
  • begin() resets oneWire and set resolution to 9 bit.
    returns true if all is OK.
  • requestTemperatures() trigger temperature comversion
  • isConversionComplete() check if conversion is complete
  • int16_t readTempC() returns temperature in whole degrees only. -55..125
    -127 = DEVICE_DISCONNECTED

Operation

This library supports only one DS18B20 per Arduino/ MCU pin.

    //  BOTTOM VIEW
    //
    //          PIN  MEANING
    //   /---+
    //  /  o |  1    GND
    //  |  o |  2    DATA
    //  \  o |  3    VCC
    //   \---+
    //

Connect a pull-up resistor 4.7 KOhm between pin3 and pin2. When the wires are longer this resistor needs to be smaller.

Check examples.

Credits

Miles Burton who originally developed the Arduino Temperature Control Library. and all people who contributed to that lib.