doc: renamed project

This commit is contained in:
SylvanArnold
2025-04-29 13:52:54 +02:00
committed by Sylvan Arnold
parent 244e516bd8
commit 32618389d1
985 changed files with 1 additions and 1 deletions

32
pico-sensor/src/sensor.h Normal file
View File

@@ -0,0 +1,32 @@
/*
* Copyright (c) 2023, Erich Styger
*
* SPDX-License-Identifier: BSD-3-Clause
*/
#ifndef SENSOR_H_
#define SENSOR_H_
/*!
* \brief Getter for the sensor temperature
* \return Sensor temperature value in degree C
*/
float Sensor_GetTemperature(void);
/*!
* \brief Getter for the sensor humidity
* \return Sensor humidity value as % RH
*/
float Sensor_GetHumidity(void);
/*!
* \brief Sensor module de-initialization
*/
void Sensor_Deinit(void);
/*!
* \brief Sensor module initialization
*/
void Sensor_Init(void);
#endif /* SENSOR_H_ */