Skip to content

Commit

Permalink
added battery voltage and temp
Browse files Browse the repository at this point in the history
  • Loading branch information
meatpiHQ committed Dec 13, 2024
1 parent 017f8a4 commit 7ec4183
Showing 1 changed file with 29 additions and 1 deletion.
30 changes: 29 additions & 1 deletion vehicle_profiles/byd/atto3.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
]
}
Expand Down

0 comments on commit 7ec4183

Please sign in to comment.