From 26126bae1a32f4f4e8bc01e3fbd2f380ca1b3b29 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20=C3=96ster?= Date: Mon, 15 Sep 2025 14:42:54 +0300 Subject: [PATCH] Tweak voltage limits for Zoe1 --- Software/src/battery/RENAULT-ZOE-GEN1-BATTERY.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Software/src/battery/RENAULT-ZOE-GEN1-BATTERY.h b/Software/src/battery/RENAULT-ZOE-GEN1-BATTERY.h index 1e5d7631..baa759d0 100644 --- a/Software/src/battery/RENAULT-ZOE-GEN1-BATTERY.h +++ b/Software/src/battery/RENAULT-ZOE-GEN1-BATTERY.h @@ -34,10 +34,10 @@ class RenaultZoeGen1Battery : public CanBattery { private: RenaultZoeGen1HtmlRenderer renderer; - static const int MAX_PACK_VOLTAGE_DV = 4200; //5000 = 500.0V + static const int MAX_PACK_VOLTAGE_DV = 4040; //5000 = 500.0V static const int MIN_PACK_VOLTAGE_DV = 3000; static const int MAX_CELL_DEVIATION_MV = 150; - static const int MAX_CELL_VOLTAGE_MV = 4250; //Battery is put into emergency stop if one cell goes over this value + static const int MAX_CELL_VOLTAGE_MV = 4220; //Battery is put into emergency stop if one cell goes over this value static const int MIN_CELL_VOLTAGE_MV = 2700; //Battery is put into emergency stop if one cell goes below this value DATALAYER_BATTERY_TYPE* datalayer_battery;