src.nth.io/

summaryrefslogtreecommitdiff
path: root/main/CMakeLists.txt
diff options
context:
space:
mode:
authorLuke Hoersten <[email protected]>2026-07-15 19:18:32 -0500
committerLuke Hoersten <[email protected]>2026-07-15 19:18:32 -0500
commitf59cea3be9eed8d63fa44d4fd360c9c68e9318f6 (patch)
tree699a0b554d04600520505c9e5bf835f89663af9f /main/CMakeLists.txt
parent659da7f36473a21494693f031a39fb6bb977b90a (diff)
temp: report on-die temperature in /state and the info screen
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.
Diffstat (limited to 'main/CMakeLists.txt')
-rw-r--r--main/CMakeLists.txt6
1 files changed, 3 insertions, 3 deletions
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
)