27 lines
762 B
C
27 lines
762 B
C
#ifndef THERMOMETER_H
|
|
#define THERMOMETER_H
|
|
|
|
#include <zephyr/kernel.h>
|
|
#include <zephyr/device.h>
|
|
#include <zephyr/drivers/sensor.h>
|
|
|
|
#include "error_code.h"
|
|
|
|
/**
|
|
* @brief init the thermometer module
|
|
* @return init_failed upon any error during init
|
|
* @return success otherwise
|
|
*/
|
|
enum error_code thermo_init();
|
|
|
|
/**
|
|
* @brief Retrieve the temperature and stores it in the given parameter
|
|
* @param[out] holder : pointer where the measurement will be stored
|
|
* @return read_failed upon any error occuring during measurement
|
|
* @return success otherwise
|
|
* @note the content of holder should not be trusted upon returning something else than success
|
|
*/
|
|
enum error_code thermo_get_value(int* holder);
|
|
|
|
#endif //THERMOMETER_H
|