Temperature_sensor: Create new temperature sensor API
This commit is contained in:
@@ -0,0 +1,92 @@
|
||||
/*
|
||||
* SPDX-FileCopyrightText: 2010-2022 Espressif Systems (Shanghai) CO LTD
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <stdint.h>
|
||||
#include "esp_err.h"
|
||||
#include "hal/temperature_sensor_types.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
/**
|
||||
* @brief Type of temperature sensor driver handle
|
||||
*/
|
||||
typedef struct temperature_sensor_obj_t *temperature_sensor_handle_t;
|
||||
|
||||
/**
|
||||
* @brief Configuration of measurement range for the temperature sensor.
|
||||
*
|
||||
* @note If you see the log `the boundary you gave cannot meet the range of internal temperature sensor`. You may need to refer to
|
||||
* predefined range listed doc ``api-reference/peripherals/Temperature sensor``.
|
||||
*/
|
||||
typedef struct {
|
||||
int range_min; // the minimum value of the temperature you want to test
|
||||
int range_max; // the maximum value of the temperature you want to test
|
||||
temperature_sensor_clk_src_t clk_src; // the clock source of the temperature sensor.
|
||||
} temperature_sensor_config_t;
|
||||
|
||||
#define TEMPERAUTRE_SENSOR_CONFIG_DEFAULT(min, max) {.range_min = min, \
|
||||
.range_max = max, \
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief Install temperature sensor driver
|
||||
*
|
||||
* @param tsens_config Pointer to config structure.
|
||||
* @param ret_tsens Return the pointer of temperature sensor handle.
|
||||
* @return
|
||||
* - ESP_OK if succeed
|
||||
*/
|
||||
esp_err_t temperature_sensor_install(const temperature_sensor_config_t *tsens_config, temperature_sensor_handle_t *ret_tsens);
|
||||
|
||||
/**
|
||||
* @brief Uninstall the temperature sensor driver
|
||||
*
|
||||
* @param tsens The handle created by `temperature_sensor_install()`.
|
||||
* @return
|
||||
* - ESP_OK if succeed.
|
||||
*/
|
||||
esp_err_t temperature_sensor_uninstall(temperature_sensor_handle_t tsens);
|
||||
|
||||
/**
|
||||
* @brief Start temperature measurement.
|
||||
*
|
||||
* @param tsens The handle created by `temperature_sensor_install()`.
|
||||
* @return
|
||||
* - ESP_OK Success
|
||||
* - ESP_ERR_INVALID_STATE if temperature sensor is started already.
|
||||
*/
|
||||
esp_err_t temperature_sensor_start(temperature_sensor_handle_t tsens);
|
||||
|
||||
/**
|
||||
* @brief Stop temperature sensor measure.
|
||||
*
|
||||
* @param tsens The handle created by `temperature_sensor_install()`.
|
||||
* @return
|
||||
* - ESP_OK Success
|
||||
* - ESP_ERR_INVALID_STATE if temperature sensor is stopped already.
|
||||
*/
|
||||
esp_err_t temperature_sensor_stop(temperature_sensor_handle_t tsens);
|
||||
|
||||
/**
|
||||
* @brief Read temperature sensor data that is converted to degrees Celsius.
|
||||
* @note Should not be called from interrupt.
|
||||
*
|
||||
* @param tsens The handle created by `temperature_sensor_install()`.
|
||||
* @param out_celsius The measure output value.
|
||||
* @return
|
||||
* - ESP_OK Success
|
||||
* - ESP_ERR_INVALID_ARG ARG is NULL.
|
||||
* - ESP_ERR_INVALID_STATE The ambient temperature is out of range.
|
||||
*/
|
||||
esp_err_t temperature_sensor_get_celsius(temperature_sensor_handle_t tsens, float *out_celsius);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
Reference in New Issue
Block a user