STM32 1-Wire (One Wire) Protocol + DS18B20 Code Example

In this tutorial, we’ll discuss how to implement STM32 1-Wire (One Wire) Protocol Communication using the STM32 UART (Single-Wire / Half-Duplex) Mode. You’ll learn how to use the STM32 UART in Single-Wire mode to interface the DS18B20 Temperature Sensor With STM32 over 1-Wire communication. Without further ado, let’s get right into it!

Table of Contents

  1. STM32 1-Wire (One Wire) Protocol
  2. 1-Wire (One Wire) Transaction Elements
  3. STM32 1-Wire (One Wire) Implementation
  4. STM32 DS18B20 1-Wire Example Overview
  5. DS18B20 With STM32 1-Wire (One Wire) – Example
  6. Wrap Up

STM32 1-Wire (One Wire) Protocol

The 1-Wire protocol was developed by Dallas Semiconductor (now Maxim Integrated). It’s a low-speed, low-power communication protocol used for connecting devices like temperature sensors, memory chips, and other peripherals to a host (master) microcontroller over a single data line.

The 1-Wire protocol allows for power and data to be delivered over a single wire, making it very efficient for some applications with specific wiring constraints.

1-Wire Protocol Features Summary:

  • Host (Master) initiated and controlled bus transactions.
  • Only one data line is required, and it is easy to implement in hardware & software.
  • Low Power Consumption, Ideal for battery-powered applications.
  • Multiple 1-Wire devices can be connected to the same bus and addressed individually using unique ROM codes.
  • 3-Phase communication sequence: (Reset Sequence, ROM CMD Sequence, and Function CMD Sequence).
  • Two Serial Communication Speeds
    • Regular: 15.4 kbps
    • Overdrive: 125 kbps

1-Wire (One Wire) Transaction Elements

The 1-Wire communication protocol has 3-phase transactions. Each 1-Wire transaction has the following 3 sequences (elements):

  • Reset Sequence
  • COM CMD Sequence
  • F-CMD Sequence

The 3 sequences (elements) of a 1-Wire transaction are shown in the figure below. And we’ll discuss each of them in a bit more detail hereafter in this section.

STM32-1-Wire-One-Wire-Communication-Protocol-Transaction-Elements

1-Wire Reset Sequence

The 1-Wire transaction starts with a reset sequence which is initiated by the host (master) device that pulls the data line low for a minimum of 480µs before releasing it again. This is called the Master Reset Pulse.

If a device on the 1-Wire bus detects the master reset pulse, it’ll respond by pulling the line low for 60-240µs after the host releases the line. This is called the Device Presence Pulse.

1-Wire ROM Command (ROM CMD) Sequence

ROM commands are used to address specific devices on the bus or broadcast commands to all 1-Wire devices. If only one device is connected over the 1-Wire bus, a Skip ROM command can be sent in the (ROM CMD Sequence) to proceed to the function CMD phase.

ROM commands include: (Search ROM, Read ROM, Match ROM, Skip ROM, etc). You need to check the 1-Wire device’s datasheet to know more about the available ROM commands for this specific device.

1-Wire Function Command (F-CMD) Sequence

The Function command (F-CMD) sequence is device-dependent as it’s used to command the 1-Wire device to do specific functions (operations) depending on the device functions listed in the datasheet. Read memory, write memory, read temperature, read humidity, etc.. are all examples of F-CMDs for various 1-Wire devices.

The DS18B20 temperature sensor that we’ll use in this tutorial has an F-CMD called Convert T which is a command to initiate temperature conversion. Another F-CMD that we’ll also use is called Read Scratchpad which is a command to read the DS18B20’s scratchpad memory that contains the temperature conversion result.


STM32 1-Wire (One Wire) Implementation

There are two options to implement a 1-Wire communication protocol with STM32 microcontrollers, which are listed below:

  • GPIO Pin
  • UART (in Single-Wire Half-Duplex Mode)

And we’ll be using the second method in this tutorial.

There are some challenges for using the standard STM32 UART hardware in single-wire (half-duplex) mode as it’s not “ready” to do 1-wire transactions out of the box. It needs a bit of tuning and real-time configuration change to obey the timing constraints of the 1-Wire communication protocol.

In this tutorial, we’ll use the DS18B20 temperature sensor to test our implementation of STM32 UART-based 1-wire communication. So, let’s first check its datasheet and learn more about its 1-Wire signal timings, commands, etc.

DS18B20 1-Wire Timings

As stated in the DS18B20 datasheet, the timing diagrams for various 1-Wire protocol elements are as follows:

Master (Host) Write / Read Timings:

Reset Sequence Timing:

Master Write Bit “1”

According to the DS18B20 datasheet, to send a bit “1,” the data line should transition from HIGH to LOW, stay LOW for approximately 1µs, and then it’s released back to HIGH by the external pull-up resistor. The DS18B20 will sample the data line 15µs after it first goes LOW.

At a baud rate of 115200, each bit period is approximately 8.68µs. The minimum time the MCU can pull the line LOW is a one-bit period, which is around 8.68µs, exceeding the 1µs requirement. However, since the DS18B20 samples the line 15µs after it first goes LOW, we can still mitigate this issue.

By sending the byte 0xFF over UART @ 115200bps:

  • The start bit will be LOW for a one-bit period (approximately 8.68µs).
  • The following 8 data bits will be HIGH, keeping the line HIGH for the rest of the time.

This ensures that by the time the DS18B20 samples the line (15µs after the initial LOW), the line will be HIGH.

Master Write Bit “0”

According to the DS18B20 datasheet, to send a bit “0,” the data line should transition from HIGH to LOW, stay LOW for at least 60µs, and then it’s released back to HIGH by the pull-up resistor. The DS18B20 will sample the data line 15µs after it first goes LOW.

At a baud rate of 115200, each bit period is approximately 8.68µs. We need the line to stay LOW for at least 60µs, which corresponds to around 7 UART bit periods.

By sending the byte 0x00 over UART @ 115200bps:

  • The start bit will be LOW for a one-bit period (approximately 8.68µs).
  • The following 8 data bits will also be LOW, keeping the line LOW for the entire byte period.

This will ensure the line is LOW for at least 60µs.

Master Write Byte

To send a byte of data according to the 1-Wire protocol timings in the ds18b20 datasheet using the STM32 UART (single-wire mode) @ 115200bps, we can do it by sending either 0xFF or 0x00 for each bit of the desired data byte as shown in the code snippet below.

Master Read Bit

According to the DS18B20 datasheet, to read a bit:

  • The host/master (STM32 microcontroller) must initiate a LOW pulse on the data line for at least 1µs.
  • After this, the line is released, and the sensor will respond by either holding the line LOW (indicating a bit “0”) or allowing it to be pulled HIGH (indicating a bit “1”).
  • The master should sample the line approximately 15µs after initiating the LOW pulse.

At a baud rate of 115200, each bit period is about 8.68µs. Therefore, the read-bit operation will go as follows:

  • The host sends the byte 0xFF over UART. This sequence ensures that:
    • The start bit is LOW, lasting approximately 8.68µs.
    • The following data bits are HIGH.
  • After transmitting the 0xFF, the sensor’s response can be read by capturing the incoming UART RX byte.
  • The RX byte’s LSB corresponds to the DS18B20 sensor’s response bit value (1 or 0).

Here is a code snippet for how it’s implemented:

Master Read Byte

This is the same process as the one shown in the previous section of reading a single bit. But it’s done in an 8 times loop to read a whole byte of data.

Here is the code implementation for the read-byte operation:

Master Reset Sequence (Initialization)

According to the DS18B20 datasheet, the reset sequence consists of:

  1. Reset Pulse: The master must pull the data line LOW for at least 480µs.
  2. Presence Pulse: After the reset pulse, the master releases the line (pulls it HIGH), and the slave device responds with a presence pulse by pulling the line LOW for 60-240µs.

This is obviously hard to achieve using the UART’s 115200bps baud rate. Therefore, we’ll change the baud rate down to 9600bps to make it easier for us to achieve the timings of the reset sequence. At this rate, each bit duration is approximately 104µs, which is suitable for generating the required reset pulse duration.

To send a reset pulse, we can send a byte of 0xF0 which has 5 bit periods (1 start bit + 4 bits) at the LOW state. This means the line will be pulled LOW for 5-bit periods (5×104) = 520µs. Which satisfies the requirement of the Reset Pulse (>480µs).

When the DS18B20 device detects the master’s reset pulse, it will send the presence pulse by pulling the line LOW again immediately after the master releases the line. Consequently, the value of the data byte 0xF0 sent by the master will change and this indicates the presence of a DS18B20 device on the 1-Wire bus. Otherwise, if the data 0xF0 remained the same, this means no device was found on the bus.

Here is the code implementation of the 1-Wire reset sequence for the DS18B20 temperature sensor:

DS18B20 1-Wire Commands

The full ROM-CMD & F-CMD command list can be found in the DS18B20’s datasheet but here are the commands we’ll use in this tutorial’s example project.

CMD NameCMD TypeCMD Code (Hex)Command Functionality
Skip ROMROM-CMD0xCCSkips the ROM command sequence
Convert TF-CMD0x44Starts a temperature conversion
Read ScratchpadF-CMD0xBERead the scratchpad memory to get the temperature

STM32 DS18B20 1-Wire Example Overview

In this example project, we’ll interface the digital temperature sensor DS18B20 with STM32 using UART in single-wire mode to implement the 1-Wire protocol elements according to the DS18B20 datasheet.

We’ll initialize the DS18B20 sensor, read the temperature value every 100ms, and keep repeating.

STM32 DS18B20 Temperature Sensor Wiring Diagram

Here is the wiring diagram for the STM32 DS18B20 (UART Singel-Wire) example project.

STM32-DS18B20-Wiring-Diagram-UART-Single-Wire-Example


DS18B20 With STM32 1-Wire (One Wire) – Example

Step #1

Open STM32CubeMX, create a new project, and select the target microcontroller.

Step #2

Enable UART1 in Single-Wire (Half-Duplex) mode and leave the default configurations as is.

STM32-DS18B20-1-Wire-UART-One-Wire-Example-Configuration

Step #3

Go to the RCC clock configuration page and enable the HSE external crystal oscillator input.

STM32 RCC External Clock Selection CubeMX

Step #4

Go to the clock configurations page, and select the HSE as a clock source, PLL output, and type in 72MHz for the desired output system frequency. Hit the “ Enter” key, and let the application solve for the required PLL dividers/multipliers to achieve the desired clock rate.

STM32-Blue-Pill-Proteus-Library-Simulation-Clock-Configuration

Step #5

Name & Generate The Project Initialization Code For CubeIDE or The IDE You’re Using.

STM32 DS18B20 1-Wire UART Example Code

Here is The Application Code For This LAB (main.c)

❕ Note

Note That the DS18B20 temperature reading in the scratchpad memory is two-bytes in size containing the 12-bit resolution temperature reading. Dividing the 16-bit reading by 16 (or right-shifting by 4, >>4) gives us the 12-bit temperature value.

STM32 DS18B20 1-Wire UART Example Testing

Here is the testing result of this example project running on my STM32 blue pill (F103C8T6) board. Yes, it’s so hot here right now!

STM32-DS18B20-1-Wire-UART-Example-Result


Required Parts For STM32 Examples

All the example Code/LABs/Projects in this STM32 Series of Tutorials are done using the Dev boards & Electronic Parts Below:

QTY.Component NameAmazon.comAliExpresseBay
1STM32-F103 BluePill Board (ARM Cortex-M3 @ 72MHz)AmazonAliExpresseBay
1Nucleo-L432KC (ARM Cortex-M4 @ 80MHz)AmazonAliExpresseBay
1ST-Link V2 DebuggerAmazonAliExpresseBay
2BreadBoardAmazonAliExpresseBay
1LEDs KitAmazonAmazonAliExpresseBay
1Resistors KitAmazonAmazonAliExpresseBay
1Capacitors KitAmazonAmazonAliExpress & AliExpresseBay & eBay
1Jumper Wires PackAmazonAmazonAliExpress & AliExpresseBay & eBay
1Push ButtonsAmazonAmazonAliExpresseBay
1PotentiometersAmazonAliExpresseBay
1Micro USB CableAmazonAliExpresseBay

★ Check The Links Below For The Full Course Kit List & LAB Test Equipment Required For Debugging ★

Download Attachments

You can download all attachment files for this Article/Tutorial (project files, schematics, code, etc..) using the link below. Please consider supporting our work through the various support options listed in the link down below. Every small donation helps to keep this website up and running and ultimately supports the whole community.


Wrap Up

In conclusion, we’ve explored how to set up the STM32 UART in Half-Duplex mode to implement 1-Wire protocol elements according to the DS18B20 temperature sensor’s datasheet. We’ve successfully initialized and sampled temperature data using the DS18B20 with STM32 UART single-wire mode.

You can build on top of the example provided in this tutorial and/or explore the other parts of this STM32 UART tutorial series linked below.

This Tutorial is Part of The Following Multi-Part Tutorial Series:

Share This Page With Your Network!
Join Our +25,000 Newsletter Subscribers!

Stay Updated With All New Content Releases. You Also Get Occasional FREE Coupon Codes For Courses & Other Stuff!

Photo of author
Author
Khaled Magdy
Embedded systems engineer with several years of experience in embedded software and hardware design. I work as an embedded SW engineer in the Automotive & e-Mobility industry. However, I still do Hardware design and SW development for DSP, Control Systems, Robotics, AI/ML, and other fields I'm passionate about.
I love reading, writing, creating projects, and teaching. A reader by day and a writer by night, it's my lifestyle. I believe that the combination of brilliant minds, bold ideas, and a complete disregard for what is possible, can and will change the world! I will be there when it happens, will you?

Leave a Comment