26 lines
578 B
C
26 lines
578 B
C
/**
|
|
* @file include/di_fw/temperature.h
|
|
* @brief temperature module
|
|
* @copyright 2016 Dual Inventive Technology Centre B.V.
|
|
*/
|
|
#ifndef INCLUDE_DI_FW_TEMPERATURE_H_
|
|
#define INCLUDE_DI_FW_TEMPERATURE_H_
|
|
|
|
#define DI_FW_TEMPERATURE_DEFAULT_TEMPERATURE 20
|
|
|
|
/**
|
|
* transfer current temperature to caller
|
|
*
|
|
* @return float current temperature
|
|
*/
|
|
float di_fw_temperature_get_temperature(void);
|
|
|
|
/**
|
|
* set new current temperature
|
|
*
|
|
* @param float new current temperature
|
|
*/
|
|
void di_fw_temperature_set_temperature(float temperature);
|
|
|
|
#endif /* INCLUDE_DI_FW_TEMPERATURE_H_ */
|