How to interface DS18B20 with STM32

I have covered few temperature sensors in the past eg- LM35, DHT11, DHT22 and also the internal temperature sensor of the STm itself. Today in this tutorial I am going to interface DS18B20 temperature sensor with STM32.


The DS18B20 digital thermometer provides 9-bit to 12-bit Celsius temperature measurements and has an alarm function with non-volatile user-programmable upper and lower trigger points. Like DHT11 and DHT22, DS18B20 also communicates over a 1-Wire bus that by definition requires only one data line (and ground) for communication with the microcontroller. Let’s see how to program a ds18b20 temperature sensor using STM32.

HOW TO

I am going to skip the Cubemx setup process as it’s usual one only. I am using pin PA1 as the data pin for the sensor and controller is running at it’s maximum frequency. Also I am using DWT library for the delay in microseconds. It will be included in the code when you download it below. We need to write few functions for the sensor. They are as follows..
In order for the sensor to work, we need to initialize it every time. According to the datasheet, the initialization is done by pulling the data pin LOW for 480 us and than reading the pin for the presence pulse sent by sensor. Here is the function for that

uint8_t ds18b20_init (void)
{
	gpio_set_output ();   // set the pin as output
	HAL_GPIO_WritePin (GPIOA, GPIO_PIN_1, 0);  // pull the pin low
	DWT_Delay_us (480);   // delay according to datasheet

	gpio_set_input ();    // set the pin as input
	DWT_Delay_us (80);    // delay according to datasheet

	if (!(HAL_GPIO_ReadPin (GPIOA, GPIO_PIN_1)))    // if the pin is low i.e the presence pulse is there
	{
		DWT_Delay_us (400); // wait for 400 us
		return 0;
	}

	else
	{
		DWT_Delay_us (400);  // wait for 400 us
		return 1;
	}
}
To write a BIT to the sensor, we need to perform some operation on the data line. To generate a Write 1, after pulling the 1-Wire bus low, the master must release the 1-Wire bus within 15µs. When the bus is released, the 5kΩ pullup resistor will pull the bus high.

To generate a Write 0 time slot, after pulling the 1-Wire bus low, the master must continue to hold the bus low for the duration of the time slot (at least 60µs). 


void write (uint8_t data)
{
	gpio_set_output ();  // set as output
	for (int i=0; i<8; i++)
	{
		if ((data & (1<<i))!=0)  // LSB first
		{
			// write 1 sequence

			gpio_set_output ();  // set as output
			HAL_GPIO_WritePin (GPIOA, GPIO_PIN_1, 0); // Pull the Pin LOW
			DWT_Delay_us (1);  // wait for 1us
			gpio_set_input (); // set the pin as input
			DWT_Delay_us (60);  // wait for 60us
		}

		else
		{
			// write 0
			gpio_set_output ();
			HAL_GPIO_WritePin (GPIOA, GPIO_PIN_1, 0);
			DWT_Delay_us (60);
			gpio_set_input ();
		}
	}
}
A read time slot is initiated by the master device pulling the 1-Wire bus low for a minimum of 1µs and then releasing the bus. After the master initiates the read time slot, the DS18B20 will begin transmitting a 1 or 0 on bus. It transmits a 1 by leaving the bus high and transmits a 0 by pulling the bus low. When transmitting a 0, the sensor will release the bus by the end of the time slot, and the bus will be pulled back to its high idle state by the pullup resister.

uint8_t read (void)
{
	uint8_t value=0;
	gpio_set_input ();  // set the pin as input

	for (int i=0;i<8;i++)
	{
              // Initiate READ 

		gpio_set_output ();  // set as output  
		HAL_GPIO_WritePin (GPIOA, GPIO_PIN_1,0);  // pull the pin LOW
		DWT_Delay_us (2); // wait for 2 us

		gpio_set_input ();  // set as input
		if (HAL_GPIO_ReadPin (GPIOA, GPIO_PIN_1))  // if the pin is high
		{
			value |= 1<<i;  // write 1
		}
		DWT_Delay_us (60);  // wait for 60 us

	}
	return value;
}
The following is the sequence for reading temperature from the ds18b20

		check = reset ();
		write (0xCC);  // skip ROM
		write (0x44);  // convert t

		HAL_Delay (800);

		reset ();
		write (0xCC);  // skip ROM
		write (0xBE);  // Read Scratchpad

		temp_l = read();
		temp_h = read();

		temp = (temp_h<<8)|temp_l;
                temperature = (float)temp/16;

CODE 

GPIO_InitTypeDef GPIO_InitStruct;

void gpio_set_input (void)
{
  GPIO_InitStruct.Pin = GPIO_PIN_1;
  GPIO_InitStruct.Mode = GPIO_MODE_INPUT;
  GPIO_InitStruct.Pull = GPIO_PULLUP;
  HAL_GPIO_Init(GPIOA, &GPIO_InitStruct);
}


void gpio_set_output (void)
{
  GPIO_InitStruct.Pin = GPIO_PIN_1;
  GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP;
  GPIO_InitStruct.Pull = GPIO_NOPULL;
  GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW;
  HAL_GPIO_Init(GPIOA, &GPIO_InitStruct);
}

uint8_t check =2, temp_l, temp_h;
uint16_t temp;
float temperature;


uint8_t ds18b20_init (void)
{
	gpio_set_output ();   // set the pin as output
	HAL_GPIO_WritePin (GPIOA, GPIO_PIN_1, 0);  // pull the pin low
	DWT_Delay_us (480);   // delay according to datasheet

	gpio_set_input ();    // set the pin as input
	DWT_Delay_us (80);    // delay according to datasheet

	if (!(HAL_GPIO_ReadPin (GPIOA, GPIO_PIN_1)))    // if the pin is low i.e the presence pulse is there
	{
		DWT_Delay_us (400);  // wait for 400 us
		return 0;
	}

	else
	{
		DWT_Delay_us (400);
		return 1;
	}
}

void write (uint8_t data)
{
	gpio_set_output ();   // set as output

	for (int i=0; i<8; i++)
	{

		if ((data & (1<<i))!=0)  // if the bit is high
		{
			// write 1

			gpio_set_output ();  // set as output
			HAL_GPIO_WritePin (GPIOA, GPIO_PIN_1, 0);  // pull the pin LOW
			DWT_Delay_us (1);  // wait for  us

			gpio_set_input ();  // set as input
			DWT_Delay_us (60);  // wait for 60 us
		}

		else  // if the bit is low
		{
			// write 0

			gpio_set_output ();
			HAL_GPIO_WritePin (GPIOA, GPIO_PIN_1, 0);  // pull the pin LOW
			DWT_Delay_us (60);  // wait for 60 us

			gpio_set_input ();
		}
	}
}


uint8_t read (void)
{
	uint8_t value=0;
	gpio_set_input ();

	for (int i=0;i<8;i++)
	{
		gpio_set_output ();   // set as output

		HAL_GPIO_WritePin (GPIOA, GPIO_PIN_1, 0);  // pull the data pin LOW
		DWT_Delay_us (2);  // wait for 2 us

		gpio_set_input ();  // set as input
		if (HAL_GPIO_ReadPin (GPIOA, GPIO_PIN_1))  // if the pin is HIGH
		{
			value |= 1<<i;  // read = 1
		}
		DWT_Delay_us (60);  // wait for 60 us
	}
	return value;
}


int main(void)
{
  MX_GPIO_Init();
  MX_I2C1_Init();
	
	lcd_init ();
	DWT_Delay_Init();

  while (1)
  {
		
		check = ds18b20_init ();
		write (0xCC);  // skip ROM
		write (0x44);  // convert t

		HAL_Delay (800);

		ds18b20_init ();
		write (0xCC);  // skip ROM
		write (0xBE);  // Read Scratchpad

		temp_l = read();
		temp_h = read();
		temp = (temp_h<<8)|temp_l;
		temperature = (float)temp/16;
		
		// display on LCD
		
		lcd_send_string ("TEMP : ");
		
		lcd_send_cmd (0x87);
		lcd_send_data ((temperature/10) + 48);
		lcd_send_data (((int )temperature%10) + 48);
		lcd_send_data ('.');
		temperature = temperature*10;
		lcd_send_data (((int )temperature%10) + 48);
		temperature = temperature*10;
		lcd_send_data (((int )temperature%10) + 48);
		
		lcd_send_cmd (0x80);
  }
  /* USER CODE END 3 */
}

CONNECTION 


RESULT




To DOWNLOAD THE FULL CODE, VISIT https://www.controllerstech.com/ds18b20-and-stm32/

How to interface DS18B20 with STM32 How to interface DS18B20 with STM32 Reviewed by Controllerstech on April 18, 2019 Rating: 5

No comments:

Powered by Blogger.