Cirkit Designer Logo
Cirkit Designer
Your all-in-one circuit design IDE
Home / 
Component Documentation

How to Use DS18B20: Examples, Pinouts, and Specs

Image of DS18B20
Cirkit Designer LogoDesign with DS18B20 in Cirkit Designer

Introduction

The DS18B20 is a precision digital temperature sensor that offers a convenient way to measure temperature in a wide range of applications. Manufactured by ELEGOO, this sensor is known for its ease of use with microcontrollers such as the Arduino UNO. It uses the 1-Wire protocol, which minimizes the number of pins required for operation, allowing multiple DS18B20 sensors to be connected in parallel on the same data line.

Explore Projects Built with DS18B20

Use Cirkit Designer to design, explore, and prototype these projects online. Some projects support real-time simulation. Click "Open Project" to start designing instantly!
Arduino UNO Based Temperature Monitoring System with DS18B20 Sensor
Image of DS18b20 sim test: A project utilizing DS18B20 in a practical application
This circuit is designed to measure temperature using a DS18B20 sensor interfaced with an Arduino UNO. The Arduino reads temperature data from the sensor via a 1-Wire bus with a pull-up resistor and outputs the readings to the serial console.
Cirkit Designer LogoOpen Project in Cirkit Designer
Arduino UNO-Based Multi-Sensor Environmental Monitoring System
Image of diagrama tesis: A project utilizing DS18B20 in a practical application
This circuit involves an Arduino UNO microcontroller interfacing with a DS18B20 temperature sensor. The sensor is powered by the Arduino's 5V and GND pins, and its data pin is connected to a digital I/O pin on the Arduino, with a pull-up resistor in place. The setup is designed to read temperature data from the sensor.
Cirkit Designer LogoOpen Project in Cirkit Designer
ESP8266 NodeMCU with DS18B20 Temperature Sensor Monitoring
Image of SUHU: A project utilizing DS18B20 in a practical application
This circuit features an ESP8266 NodeMCU microcontroller connected to a DS18B20 temperature sensor. The sensor's data line (DQ) is connected to the D2 pin of the NodeMCU through a 4.7k ohm pull-up resistor, which is a common configuration for one-wire temperature sensors. The sensor is powered by the 3.3V supply from the NodeMCU, and both the sensor and the NodeMCU share a common ground.
Cirkit Designer LogoOpen Project in Cirkit Designer
Arduino UNO with Multiple DS18B20 Sensors for Temperature Monitoring
Image of Interfacing Multiple DS18B20 Digital Temperature Sensors With Arduino UNO: A project utilizing DS18B20 in a practical application
This circuit is designed to monitor temperatures using multiple DS18B20 1-Wire temperature sensors connected to an Arduino UNO microcontroller. The sensors are powered by the Arduino's 5V output and share a common data line (DQ) connected to digital pin 2 through a 4.7kΩ pull-up resistor, allowing for simultaneous temperature readings. The Arduino runs a sketch that reads temperatures from each sensor and outputs the readings to the serial monitor in both Celsius and Fahrenheit.
Cirkit Designer LogoOpen Project in Cirkit Designer

Explore Projects Built with DS18B20

Use Cirkit Designer to design, explore, and prototype these projects online. Some projects support real-time simulation. Click "Open Project" to start designing instantly!
Image of DS18b20 sim test: A project utilizing DS18B20 in a practical application
Arduino UNO Based Temperature Monitoring System with DS18B20 Sensor
This circuit is designed to measure temperature using a DS18B20 sensor interfaced with an Arduino UNO. The Arduino reads temperature data from the sensor via a 1-Wire bus with a pull-up resistor and outputs the readings to the serial console.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of diagrama tesis: A project utilizing DS18B20 in a practical application
Arduino UNO-Based Multi-Sensor Environmental Monitoring System
This circuit involves an Arduino UNO microcontroller interfacing with a DS18B20 temperature sensor. The sensor is powered by the Arduino's 5V and GND pins, and its data pin is connected to a digital I/O pin on the Arduino, with a pull-up resistor in place. The setup is designed to read temperature data from the sensor.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of SUHU: A project utilizing DS18B20 in a practical application
ESP8266 NodeMCU with DS18B20 Temperature Sensor Monitoring
This circuit features an ESP8266 NodeMCU microcontroller connected to a DS18B20 temperature sensor. The sensor's data line (DQ) is connected to the D2 pin of the NodeMCU through a 4.7k ohm pull-up resistor, which is a common configuration for one-wire temperature sensors. The sensor is powered by the 3.3V supply from the NodeMCU, and both the sensor and the NodeMCU share a common ground.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of Interfacing Multiple DS18B20 Digital Temperature Sensors With Arduino UNO: A project utilizing DS18B20 in a practical application
Arduino UNO with Multiple DS18B20 Sensors for Temperature Monitoring
This circuit is designed to monitor temperatures using multiple DS18B20 1-Wire temperature sensors connected to an Arduino UNO microcontroller. The sensors are powered by the Arduino's 5V output and share a common data line (DQ) connected to digital pin 2 through a 4.7kΩ pull-up resistor, allowing for simultaneous temperature readings. The Arduino runs a sketch that reads temperatures from each sensor and outputs the readings to the serial monitor in both Celsius and Fahrenheit.
Cirkit Designer LogoOpen Project in Cirkit Designer

Common Applications and Use Cases

  • Home temperature monitoring systems
  • Industrial temperature control
  • HVAC systems
  • Refrigeration and freezer temperature monitoring
  • Aquarium or terrarium temperature control
  • Food temperature monitoring

Technical Specifications

Key Technical Details

  • Supply Voltage: 3.0V to 5.5V
  • Operating Temperature Range: -55°C to +125°C (-67°F to +257°F)
  • Accuracy: ±0.5°C (from -10°C to +85°C)
  • Resolution: Selectable from 9 to 12 bits
  • Unique 64-bit Serial Code: For multi-sensor networks
  • Conversion Time: 750ms at 12-bit resolution

Pin Configuration and Descriptions

Pin Number Name Description
1 GND Ground pin, connected to the system ground
2 DQ Data pin, used for 1-Wire communication
3 VDD Power supply pin, 3.0V to 5.5V

Usage Instructions

How to Use the Component in a Circuit

  1. Connect the GND pin to the ground of the power supply.
  2. Connect the VDD pin to a 3.0V to 5.5V power supply.
  3. Connect the DQ pin to a digital input/output pin on your microcontroller.
  4. Use a 4.7kΩ pull-up resistor on the DQ line to ensure proper communication.

Important Considerations and Best Practices

  • Ensure that the power supply is stable and within the specified voltage range.
  • Use the 1-Wire protocol for communication with the microcontroller.
  • When using long wires or multiple sensors, consider the effects of parasitic capacitance on the data line.
  • Avoid placing the sensor near heat-generating components to prevent false readings.
  • For outdoor applications, ensure the sensor is adequately protected from the elements.

Example Code for Arduino UNO

#include <OneWire.h>
#include <DallasTemperature.h>

// Data wire is connected to Arduino digital pin 2
#define ONE_WIRE_BUS 2

// Setup a oneWire instance to communicate with any OneWire device
OneWire oneWire(ONE_WIRE_BUS);

// Pass oneWire reference to DallasTemperature library
DallasTemperature sensors(&oneWire);

void setup() {
  Serial.begin(9600);
  sensors.begin(); // Start up the library
}

void loop() {
  sensors.requestTemperatures(); // Send command to get temperatures
  float temperatureC = sensors.getTempCByIndex(0);
  Serial.print("Temperature is: ");
  Serial.print(temperatureC);
  Serial.println("°C");
  delay(1000); // Wait 1 second before next reading
}

Troubleshooting and FAQs

Common Issues Users Might Face

  • Inaccurate Temperature Readings: Ensure the sensor is not placed near heat sources and that the correct pull-up resistor is used.
  • No Data on the Data Line: Check connections and ensure the pull-up resistor is in place. Also, verify that the correct pin is defined in the code.
  • Multiple Sensors Interfering: Ensure each sensor has a unique address and that the bus is not overloaded.

Solutions and Tips for Troubleshooting

  • Double-check wiring, especially the pull-up resistor on the DQ line.
  • Use the sensors.getAddress() function to verify the unique address of each sensor.
  • Reduce the length of the data line or use a lower value pull-up resistor if long cables are used.

FAQs

Q: Can the DS18B20 be powered parasitically? A: Yes, the DS18B20 can be powered parasitically by connecting the VDD pin to the DQ line through a pull-up resistor.

Q: How many DS18B20 sensors can be connected on the same data line? A: There is no strict limit, but practical considerations like power supply stability and data line capacitance typically allow for around 10-20 sensors.

Q: How do I read the temperature from multiple sensors? A: Each sensor has a unique address. Use the DallasTemperature library functions to read each sensor by its address.

Q: What is the purpose of the unique 64-bit serial code? A: The unique code allows multiple DS18B20 sensors to be used on the same 1-Wire bus without address conflicts, enabling individual sensor identification and communication.