1
0
This commit is contained in:
2025-10-27 17:07:20 +01:00
parent 7e264d691c
commit bd24f1fb79
576 changed files with 240919 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
/*
* 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);
}