From b3c6f281747b947a7e5969fe87c65af75e024a06 Mon Sep 17 00:00:00 2001 From: VeSeArr <102443438+VeSeArr@users.noreply.github.com> Date: Sun, 26 Oct 2025 00:06:52 -0700 Subject: [PATCH 1/2] Added semi colon to make it work again, reverted 12v battery status, added tire pressure --- vehicle_profiles/hyundai/ioniq5-6.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/vehicle_profiles/hyundai/ioniq5-6.json b/vehicle_profiles/hyundai/ioniq5-6.json index 139442ae..066e5df9 100644 --- a/vehicle_profiles/hyundai/ioniq5-6.json +++ b/vehicle_profiles/hyundai/ioniq5-6.json @@ -43,6 +43,20 @@ "parameters": { "ODOMETER": "[B17:B18]" } + }, + { + "pid": "22C00B6", + "pid_init": "ATSH7A0;", + "parameters": { + "TYRE_P_FL": "B10*0.2", + "TYRE_P_FR": "B15*0.2", + "TYRE_P_RL": "B21*0.2", + "TYRE_P_RR": "B27*0.2", + "TYRE_T_FL": "B11-50", + "TYRE_T_FR": "B17-50", + "TYRE_T_RL": "B22-50", + "TYRE_T_RR": "B28-50" + } } ] } From dbc4bf893ac8c54b7e0b692a5dcae36ae82a41ea Mon Sep 17 00:00:00 2001 From: VeSeArr <102443438+VeSeArr@users.noreply.github.com> Date: Mon, 27 Oct 2025 11:53:31 -0700 Subject: [PATCH 2/2] HV_A needs signed value, fixed HV_W, added TMP_A & T_CAB --- vehicle_profiles/hyundai/ioniq5-6.json | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/vehicle_profiles/hyundai/ioniq5-6.json b/vehicle_profiles/hyundai/ioniq5-6.json index 066e5df9..55f3689d 100644 --- a/vehicle_profiles/hyundai/ioniq5-6.json +++ b/vehicle_profiles/hyundai/ioniq5-6.json @@ -8,9 +8,9 @@ "SOC": "B10/2", "REGEN_MAX": "[B11:B12]/100", "POWER_MAX": "[B13:B14]/100", - "HV_A": "(65536-([B17:B18]))/10", + "HV_A": "((S17*256)+B18)/10", "HV_V": "[B19:B20]/10", - "HV_W": "([B19:B20]/10)*((65536-([B17:B18]))/10)", + "HV_W": "([B19:B20]/10)*((S17*256)+B18)/10", "HV_T_MAX": "B21", "HV_T_MIN": "B22", "HV_T_1": "B23", @@ -57,6 +57,14 @@ "TYRE_T_RL": "B22-50", "TYRE_T_RR": "B28-50" } + }, + { + "pid": "2201006", + "pid_init": "ATSH7B3;", + "parameters": { + "TMP_A": "(B12/2)-40", + "T_CAB": "(B11/2)-40" + } } ] }