From f59cea3be9eed8d63fa44d4fd360c9c68e9318f6 Mon Sep 17 00:00:00 2001 From: Luke Hoersten Date: Wed, 15 Jul 2026 19:18:32 -0500 Subject: temp: report on-die temperature in /state and the info screen MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit New chip_temp module wraps the ESP32-P4 TSENS driver (20-100C range for best accuracy in the warm band a PoE + 200MHz-PSRAM device lives in). /state gains temp_c (0.1C resolution, omitted when the sensor is unavailable); the long-press info overlay gains a temp line (lowercase c suffix — the local 8x8 font has no uppercase C). Junction temperature, ~10-20C above ambient under load. --- main/CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'main/CMakeLists.txt') diff --git a/main/CMakeLists.txt b/main/CMakeLists.txt index dbb4d4b..2c17544 100644 --- a/main/CMakeLists.txt +++ b/main/CMakeLists.txt @@ -2,7 +2,7 @@ idf_component_register( SRC_DIRS "." INCLUDE_DIRS "." REQUIRES app_update driver esp_app_format esp_driver_i2c - esp_driver_jpeg esp_eth esp_event esp_http_client - esp_http_server esp_hw_support esp_lcd esp_netif esp_pm - esp_timer hal json mdns nvs_flash + esp_driver_jpeg esp_driver_tsens esp_eth esp_event + esp_http_client esp_http_server esp_hw_support esp_lcd + esp_netif esp_pm esp_timer hal json mdns nvs_flash ) -- cgit v1.2.3