1
0
Files
setr2-monorepo/P3_SETR2/Core/Src/temperature.c
2025-10-27 17:07:20 +01:00

17 lines
271 B
C

/*
* temperature.c
*
* Created on: Oct 27, 2025
* Author: jomaa
*/
#include "temperature.h"
void Temperature_Test(void)
{
float temp_value = 0;
BSP_TSENSOR_Init();
temp_value = BSP_TSENSOR_ReadTemp();
printf("TEMPERATURE is = %.2f ºC\n", temp_value);
}