ccs811.h 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. /*
  2. * Copyright (c) 2018 Peter Bigot Consulting, LLC
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief Extended public API for CCS811 Indoor Air Quality Sensor
  9. *
  10. * Some capabilities and operational requirements for this sensor
  11. * cannot be expressed within the sensor driver abstraction.
  12. */
  13. #ifndef ZEPHYR_INCLUDE_DRIVERS_SENSOR_CCS811_H_
  14. #define ZEPHYR_INCLUDE_DRIVERS_SENSOR_CCS811_H_
  15. #ifdef __cplusplus
  16. extern "C" {
  17. #endif
  18. #include <device.h>
  19. #include <drivers/sensor.h>
  20. /* Status register fields */
  21. #define CCS811_STATUS_ERROR BIT(0)
  22. #define CCS811_STATUS_DATA_READY BIT(3)
  23. #define CCS811_STATUS_APP_VALID BIT(4)
  24. #define CCS811_STATUS_FW_MODE BIT(7)
  25. /* Error register fields */
  26. #define CCS811_ERROR_WRITE_REG_INVALID BIT(0)
  27. #define CCS811_ERROR_READ_REG_INVALID BIT(1)
  28. #define CCS811_ERROR_MEASMODE_INVALID BIT(2)
  29. #define CCS811_ERROR_MAX_RESISTANCE BIT(3)
  30. #define CCS811_ERROR_HEATER_FAULT BIT(4)
  31. #define CCS811_ERROR_HEATER_SUPPLY BIT(5)
  32. /* Measurement mode constants */
  33. #define CCS811_MODE_IDLE 0x00
  34. #define CCS811_MODE_IAQ_1SEC 0x10
  35. #define CCS811_MODE_IAQ_10SEC 0x20
  36. #define CCS811_MODE_IAQ_60SEC 0x30
  37. #define CCS811_MODE_IAQ_250MSEC 0x40
  38. #define CCS811_MODE_MSK 0x70
  39. /** @brief Information collected from the sensor on each fetch. */
  40. struct ccs811_result_type {
  41. /** Equivalent carbon dioxide in parts-per-million volume (ppmv). */
  42. uint16_t co2;
  43. /**
  44. * Equivalent total volatile organic compounts in
  45. * parts-per-billion volume.
  46. */
  47. uint16_t voc;
  48. /** Raw voltage and current measured by sensor. */
  49. uint16_t raw;
  50. /** Sensor status at completion of most recent fetch. */
  51. uint8_t status;
  52. /**
  53. * Sensor error flags at completion of most recent fetch.
  54. *
  55. * Note that errors are cleared when read.
  56. */
  57. uint8_t error;
  58. };
  59. /**
  60. * @brief Access storage for the most recent data read from the sensor.
  61. *
  62. * This content of the object referenced is updated by
  63. * sensor_fetch_sample(), except for ccs811_result_type::mode which is
  64. * set on driver initialization.
  65. *
  66. * @param dev Pointer to the sensor device
  67. *
  68. * @return a pointer to the result information.
  69. */
  70. const struct ccs811_result_type *ccs811_result(const struct device *dev);
  71. /**
  72. * @brief Get information about static CCS811 state.
  73. *
  74. * This includes the configured operating mode as well as hardware and
  75. * firmware versions.
  76. */
  77. struct ccs811_configver_type {
  78. uint16_t fw_boot_version;
  79. uint16_t fw_app_version;
  80. uint8_t hw_version;
  81. uint8_t mode;
  82. };
  83. /**
  84. * @brief Fetch operating mode and version information.
  85. *
  86. * @param dev Pointer to the sensor device
  87. *
  88. * @param ptr Pointer to where the returned information should be stored
  89. *
  90. * @return 0 on success, or a negative errno code on failure.
  91. */
  92. int ccs811_configver_fetch(const struct device *dev,
  93. struct ccs811_configver_type *ptr);
  94. /**
  95. * @brief Fetch the current value of the BASELINE register.
  96. *
  97. * The BASELINE register encodes data used to correct sensor readings
  98. * based on individual device configuration and variation over time.
  99. *
  100. * For proper management of the BASELINE register see AN000370
  101. * "Baseline Save and Restore on CCS811".
  102. *
  103. * @param dev Pointer to the sensor device
  104. *
  105. * @return a non-negative 16-bit register value, or a negative errno
  106. * code on failure.
  107. */
  108. int ccs811_baseline_fetch(const struct device *dev);
  109. /**
  110. * @brief Update the BASELINE register.
  111. *
  112. * For proper management of the BASELINE register see AN000370
  113. * "Baseline Save and Restore on CCS811".
  114. *
  115. * @param dev Pointer to the sensor device
  116. *
  117. * @param baseline the value to be stored in the BASELINE register.
  118. *
  119. * @return 0 if successful, negative errno code if failure.
  120. */
  121. int ccs811_baseline_update(const struct device *dev, uint16_t baseline);
  122. /**
  123. * @brief Update the ENV_DATA register.
  124. *
  125. * Accurate calculation of gas levels requires accurate environment
  126. * data. Measurements are only accurate to 0.5 Cel and 0.5 %RH.
  127. *
  128. * @param dev Pointer to the sensor device
  129. *
  130. * @param temperature the current temperature at the sensor
  131. *
  132. * @param humidity the current humidity at the sensor
  133. *
  134. * @return 0 if successful, negative errno code if failure.
  135. */
  136. int ccs811_envdata_update(const struct device *dev,
  137. const struct sensor_value *temperature,
  138. const struct sensor_value *humidity);
  139. #ifdef __cplusplus
  140. }
  141. #endif
  142. #endif /* ZEPHYR_INCLUDE_DRIVERS_SENSOR_CCS811_H_ */