From 7ec41830cef638649b7354e5b6fef8ec4f3d04b2 Mon Sep 17 00:00:00 2001 From: meatpiHQ <94690098+meatpiHQ@users.noreply.github.com> Date: Fri, 13 Dec 2024 23:19:55 +1100 Subject: [PATCH] added battery voltage and temp --- vehicle_profiles/byd/atto3.json | 30 +++++++++++++++++++++++++++++- 1 file changed, 29 insertions(+), 1 deletion(-) diff --git a/vehicle_profiles/byd/atto3.json b/vehicle_profiles/byd/atto3.json index 9668914..a27f879 100644 --- a/vehicle_profiles/byd/atto3.json +++ b/vehicle_profiles/byd/atto3.json @@ -9,7 +9,35 @@ "name": "SOC", "expression": "((B5*256)+B4)/100", "unit": "%", - "class": "battery" + "class": "battery", + "min": "-5", + "max": "105" + } + ] + }, + { + "pid": "220008", + "parameters": [ + { + "name": "HV_Volts", + "expression": "[B4:B5]", + "unit": "V", + "class": "voltage", + "min": "200", + "max": "465" + } + ] + }, + { + "pid": "220032", + "parameters": [ + { + "name": "Batt_Temp", + "expression": "B4-40", + "unit": "°C", + "class": "temperature", + "min": "-40", + "max": "80" } ] }