temp_sensor.rst 1.4 KB

123456789101112131415161718192021222324252627282930313233
  1. ESP32-S2 Temperature Sensor
  2. ===========================
  3. Overview
  4. --------
  5. The ESP32-S2 has a built-in temperature sensor. The temperature sensor module contains an 8-bit Sigma-Delta ADC and a temperature offset DAC.
  6. The conversion relationship is the first columns of the table below. Among them, offset = 0 is the main measurement option, and other values are extended measurement options.
  7. +--------+------------------------+------------------------+
  8. | offset | measure range(Celsius) | measure error(Celsius) |
  9. +========+========================+========================+
  10. | -2 | 50 ~ 125 | < 3 |
  11. +--------+------------------------+------------------------+
  12. | -1 | 20 ~ 100 | < 2 |
  13. +--------+------------------------+------------------------+
  14. | 0 | -10 ~ 80 | < 1 |
  15. +--------+------------------------+------------------------+
  16. | 1 | -30 ~ 50 | < 2 |
  17. +--------+------------------------+------------------------+
  18. | 2 | -40 ~ 20 | < 3 |
  19. +--------+------------------------+------------------------+
  20. Application Example
  21. -------------------
  22. Temperature sensor reading example: :example:`peripherals/temp_sensor`.
  23. API Reference - Normal Temp Sensor
  24. ----------------------------------
  25. .. include-build-file:: inc/temp_sensor.inc