From 51979f5b35cd3767a8906661ad4f0d101aab4bb6 Mon Sep 17 00:00:00 2001 From: Shen Mengjing Date: Fri, 11 Jul 2025 17:41:49 +0800 Subject: [PATCH] docs: Add a note for temp_sensor --- examples/peripherals/temperature_sensor/temp_sensor/README.md | 2 ++ .../temperature_sensor/temp_sensor_monitor/README.md | 2 ++ 2 files changed, 4 insertions(+) diff --git a/examples/peripherals/temperature_sensor/temp_sensor/README.md b/examples/peripherals/temperature_sensor/temp_sensor/README.md index e7352045ab..5c8409e5df 100644 --- a/examples/peripherals/temperature_sensor/temp_sensor/README.md +++ b/examples/peripherals/temperature_sensor/temp_sensor/README.md @@ -15,6 +15,8 @@ The conversion relationship is the first two columns of the table below. Among t | 3 | 1 | -30 ~ 50 | | 4 | 2 | -40 ~ 20 | +> **Note**: The temperature sensor is integrated directly into the chip. The sensor is designed primarily to measure the internal temperature of the chip, and its readings can be affected by factors such as the microcontroller's clock frequency, I/O load, and the external environment. + ## How to use example Before project configuration and build, be sure to set the correct chip target using `idf.py set-target `. diff --git a/examples/peripherals/temperature_sensor/temp_sensor_monitor/README.md b/examples/peripherals/temperature_sensor/temp_sensor_monitor/README.md index 9bc2a6df60..637f7e2f88 100644 --- a/examples/peripherals/temperature_sensor/temp_sensor_monitor/README.md +++ b/examples/peripherals/temperature_sensor/temp_sensor_monitor/README.md @@ -12,6 +12,8 @@ The interrupt happens in two ways. * Absolute mode, which means when temperature reaches to a specific value, then interrupt triggered. * Delta mode, which means the change between two consecutive samplings is larger/smaller than the settings. +> **Note**: The temperature sensor is integrated directly into the chip. The sensor is designed primarily to measure the internal temperature of the chip, and its readings can be affected by factors such as the microcontroller's clock frequency, I/O load, and the external environment. + ## How to use example Before project configuration and build, be sure to set the correct chip target using `idf.py set-target `.