Introduction

In this lesson, we will show how to use the DS18B20 Temperature Sensor Module with an Osoyoo UNO, we will monitor the output of the DS18B20 Temperature Sensor Module. With this sensor you can get the temperature in your room, car, whatever.

Preparations

HARDWARE

SOFTWARE

Arduino IDE (version 1.6.4+)

Arduino library: OneWire.h

Arduino library: DallasTemperature.h

About DS18B20 Temperature Sensor

The DS18B20 comes in different forms and shapes, so you have plenty of choice when deciding which one works best for you. There are 3 variations available: 8-Pin SO (150 mils), 8-Pin µSOP, and 3-Pin TO-92. If you look at online shop, some friends have packaged the TO-92 version in a waterproof housing so you can use it directly in your fish-tank, water boiler, outside your house or even your freezer, without having to worry about water/moisture shortcutting your electronics (these have 3 wires: Black (GND), Red (Vdd) and white or yellow (Data)).

DS18b20 – Available Packages


DS18B20 in a waterproof casing

The DS18B20 is quite versatile. It can be powered through the data line (so called “parasite” mode, which requires only 2 wires versus 3 in normal mode), it operates in a 3.0V to 5.5V range, measures Temperatures from -55°C to +125°C (-67°F to +257°F) with and ±0.5°C Accuracy (from -10°C to +85°C). It converts a temperature in 750ms or less to a up to 12 bits value.

Another cool feature is that you can connect up to 127 of these sensors in parallel, and read each individual temperature. Not sure what I’d do with that, but the ability to combine one or two, for example for the temperature of your fridge and freezer, is a nice option, specially when other pins of your Arduino are being used for other things …

About DS18B20 Temperature Sensor Module

In this lesson, we use the DS18B20 Module to work with the OSOYOO UNO board, we will show more info about this sensor as follow:

The three pins of the Temperature module are

Description:

This is DS18B20 digital temperature sensor module for Arduino -55°C~125°C
Digital signal output
Detect ambient air temperature
Compatible with Arduino DIY project
Main chip: 18B20 temperature sensor
Material: PCB

Notes

  1. The DS18B20 and ordinary transistors look similiar, so be careful not to regard it as a generalPass transistor to avoid damage.
  2. in order to prevent damage to the DS18B20 ensure that the powerLine and ground are not reversed.
  3. the relevant technical data on the bus did not mention a single number that can be linked to how much DS18B20, But in practical applications are not as many, and we should pay attention to.
  4. There is a bus length limitation that should be taken in consideration when long-distance communications, consider bus distributed capacitance and resistance.
  5. Identify DS18B20 Temperature Sensor Module power line, ground, and data Line, power line and ground points connect to the Arduino test board +5 V, GND, Data bus connect to the digital port.

Specification:

Resolution adjustment range :9-12
With mounting holes for easy installation, Aperture: 2.5
Temperature measuring range: -55 ~ +125 ℃
Temperature measurement accuracy: 0.5 ℃
Working voltage: DC 5V
Size: 28mm x 12mm x 10mm

Example

Connection of DS18B20 Temperature Module with arduino

The connection scheme is very easier. We have only three pins to connect. Connect the temperature module to the Arduino as shown in the figure.

Code

You’ll need to install the OneWire Library and DallasTemperature Library.

Installing the OneWire Library

  1. Click here to download the OneWire library. You should have a .zip folder in your Downloads
  2. Unzip the .zip folder and you should get OneWire-master folder
  3. Rename your folder from OneWire-master to OneWire
  4. Move the OneWire folder to your Arduino IDE installation libraries folder
  5. Finally, re-open your Arduino IDE

Installing the DallasTemperature Library

  1. Click here to download the DallasTemperature library. You should have a .zip folder in your Downloads
  2. Unzip the .zip folder and you should get Arduino-Temperature-Control-Library-master folder
  3. Rename your folder from Arduino-Temperature-Control-Library-master to DallasTemperature
  4. Move the DallasTemperature folder to your Arduino IDE installation libraries folder
  5. Finally, re-open your Arduino IDE

After installing the needed libraries, upload the following code to your Arduino board.


Running Result

Finally, you should open the Arduino IDE serial monitor at a 9600 baud rate and you’ll see the temperature displayed in both Celsius and Fahrenheit: