From 7965ecd856c4ac9ed1dcdc04dbfc332acf445250 Mon Sep 17 00:00:00 2001 From: MichaelDvP Date: Mon, 4 Aug 2025 10:30:40 +0200 Subject: [PATCH] NTC parameters for E32V2.2 P2B --- src/core/analogsensor.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/core/analogsensor.h b/src/core/analogsensor.h index a00f86098..32b31a0e6 100644 --- a/src/core/analogsensor.h +++ b/src/core/analogsensor.h @@ -168,11 +168,11 @@ class AnalogSensor { void store_counters(); private: - static constexpr double Beta = 3380; + static constexpr double Beta = 4260; static constexpr double T0 = 273.15; static constexpr double T25 = 298.15; - static constexpr double R0 = 10000; - static constexpr double Rt = 10000; + static constexpr double R0 = 100000; + static constexpr double Rt = 60000; static constexpr uint8_t MAX_SENSORS = 20; static constexpr uint32_t MEASURE_ANALOG_INTERVAL = 500;