From 5b2d07d1c95b4e899cf7d00d834af125936368e8 Mon Sep 17 00:00:00 2001 From: Andreas Hasenack Date: Sun, 15 Sep 2024 19:11:37 -0300 Subject: [PATCH] atto3.json: add missing parenthesis in SOC expression --- vehicle_profiles/byd/atto3.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vehicle_profiles/byd/atto3.json b/vehicle_profiles/byd/atto3.json index 87c8991..9668914 100644 --- a/vehicle_profiles/byd/atto3.json +++ b/vehicle_profiles/byd/atto3.json @@ -7,11 +7,11 @@ "parameters": [ { "name": "SOC", - "expression": "(B5*256)+B4)/100", + "expression": "((B5*256)+B4)/100", "unit": "%", "class": "battery" } ] } ] -} \ No newline at end of file +}