sgp40.h 766 B

123456789101112131415161718192021222324252627282930313233
  1. /*
  2. * Copyright (c) 2021, Leonard Pollak
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief Extended public API for Sensirion's SGP40 gas sensor
  9. *
  10. * This exposes two attributes for the SGP40 which can be used for
  11. * setting the on-chip Temperature and Humidity compensation parameters.
  12. */
  13. #ifndef ZEPHYR_INCLUDE_DRIVERS_SENSOR_SGP40_H_
  14. #define ZEPHYR_INCLUDE_DRIVERS_SENSOR_SGP40_H_
  15. #ifdef __cplusplus
  16. extern "C" {
  17. #endif
  18. enum sensor_attribute_sgp40 {
  19. /* Temperature in degC; only the integer part is used */
  20. SENSOR_ATTR_SGP40_TEMPERATURE = SENSOR_ATTR_PRIV_START,
  21. /* Relative Humidity in %; only the integer part is used */
  22. SENSOR_ATTR_SGP40_HUMIDITY
  23. };
  24. #ifdef __cplusplus
  25. }
  26. #endif
  27. #endif /* ZEPHYR_INCLUDE_DRIVERS_SENSOR_SGP40_H_ */