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 @@
/*
* humidity.c
*
* Created on: Oct 27, 2025
* Author: jomaa
*/
#include "humidity.h"
void Humidity_Test(void)
{
float humidity_value;
BSP_HSENSOR_Init();
humidity_value = BSP_HSENSOR_ReadHumidity();
printf("HUMIDITY is = %.2f %%\n", humidity_value);
}