Merge from main and fix conflicts

This commit is contained in:
Jaakko Haakana 2025-08-03 21:54:06 +03:00
commit d8534b8fa0
71 changed files with 2202 additions and 1067 deletions

View file

@ -377,6 +377,11 @@ class EcmpHtmlRenderer : public BatteryHtmlRenderer {
? "N/A"
: String(datalayer_extended.stellantisECMP.pid_contactor_closing_counter)) +
" cycles</h4>";
content += "<h4>State of Health Cell-1: " +
(datalayer_extended.stellantisECMP.pid_SOH_cell_1 == 255
? "N/A"
: String(datalayer_extended.stellantisECMP.pid_SOH_cell_1)) +
"</h4>";
return content;
}