Add SOH candidate and contactor opening event

This commit is contained in:
Daniel Öster 2025-07-28 11:10:32 +03:00
parent fc13e69e91
commit 807576a252
6 changed files with 51 additions and 1 deletions

View file

@ -376,6 +376,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;
}