123456789101112131415161718192021222324252627282930313233 |
- /*
- * Copyright (c) 2021, Leonard Pollak
- *
- * SPDX-License-Identifier: Apache-2.0
- */
- /**
- * @file
- * @brief Extended public API for Sensirion's SGP40 gas sensor
- *
- * This exposes two attributes for the SGP40 which can be used for
- * setting the on-chip Temperature and Humidity compensation parameters.
- */
- #ifndef ZEPHYR_INCLUDE_DRIVERS_SENSOR_SGP40_H_
- #define ZEPHYR_INCLUDE_DRIVERS_SENSOR_SGP40_H_
- #ifdef __cplusplus
- extern "C" {
- #endif
- enum sensor_attribute_sgp40 {
- /* Temperature in degC; only the integer part is used */
- SENSOR_ATTR_SGP40_TEMPERATURE = SENSOR_ATTR_PRIV_START,
- /* Relative Humidity in %; only the integer part is used */
- SENSOR_ATTR_SGP40_HUMIDITY
- };
- #ifdef __cplusplus
- }
- #endif
- #endif /* ZEPHYR_INCLUDE_DRIVERS_SENSOR_SGP40_H_ */
|