sht4x.h 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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 SHT4X T/RH sensors
  9. *
  10. * This exposes an API to the on-chip heater which is specific to
  11. * the application/environment and cannot be expressed within the
  12. * sensor driver abstraction.
  13. */
  14. #ifndef ZEPHYR_INCLUDE_DRIVERS_SENSOR_SHT4X_H_
  15. #define ZEPHYR_INCLUDE_DRIVERS_SENSOR_SHT4X_H_
  16. #ifdef __cplusplus
  17. extern "C" {
  18. #endif
  19. #include <drivers/sensor.h>
  20. /* Maximum teperature above which the heater should not be used */
  21. #define SHT4X_HEATER_MAX_TEMP 65
  22. enum sensor_attribute_sht4x {
  23. /* Heater Power: 0, 1, 2 -> high, med, low */
  24. SENSOR_ATTR_SHT4X_HEATER_POWER = SENSOR_ATTR_PRIV_START,
  25. /* Heater Duration: 0, 1 -> long, short */
  26. SENSOR_ATTR_SHT4X_HEATER_DURATION
  27. };
  28. /**
  29. * @brief Fetches data using the on-chip heater.
  30. *
  31. * Measurement is always done with "high" repeatability.
  32. *
  33. * @param dev Pointer to the sensor device
  34. *
  35. * @return 0 if successful, negative errno code if failure.
  36. */
  37. int sht4x_fetch_with_heater(const struct device *dev);
  38. #ifdef __cplusplus
  39. }
  40. #endif
  41. #endif /* ZEPHYR_INCLUDE_DRIVERS_SENSOR_SHT4X_H_ */