T |
Thomas |
Currently, only the data of the current SOC is received.
Battery temperature, voltage, power and SOH are missing.
Especially the temperature is important.
Activity Newest / Oldest
Thomas
github.com/iboboc/CanZE/tree/master/app/src/main/assets/Spring
Everything is listed there.
Unfortunately I don't know how to adapt these commands to your json format.
I have contacted the developer, maybe he is willing to help.
Katya_ABRP
Status changed to: User Feedback
Katya_ABRP
Hi,
We need the OBD PID commands and how to interpret the returned data.
You can check our telemetry API for relevant properties:
documenter.getpostman.com/view/7396339/SWTK5a8w#fdb20525-51da-4195-8138-54deabe907d5
Also, you can check our (partially outdated) OBD repository to see what other cars report:
github.com/iternio/ev-obd-pids
/Katya
Thomas
Where can i find the currently used pid's json for the Dacia Spring?
Katya_ABRP
here: github.com/iternio/ev-obd-pids/blob/main/renault/zoe.json
Thomas
I have searched and compared the lists i have.
Is it possible to have a "test" car for the pid's?
{
"init_commands": {
"command": [
"ATZ",
"ATE0",
"ATAL",
"ATCP18",
"ATFCSD300000",
"ATFCSM1",
"ATSP6",
"ATSH7E4",
"ATCRA7EC",
"ATFCSH7E4",
"10C0"
]
},
"obd_protocol": "7",
"data_commands": {
"command": [
"222002",
"222003",
"223203",
"223204",
"223206",
"229012"
]
},
"soc": {
"equation": "0.02*(A*256+B)",
"minValue": "-5",
"maxValue": "105",
"type": "Number",
"command": "222002",
"ecu": "DADAF1"
},
"vehicle_reported_speed": {
"equation": "0.01*(A*256+B)",
"minValue": "0",
"maxValue": "180",
"type": "Number",
"command": "222003",
"ecu": "DADAF1"
},
"voltage": {
"equation": "0.5*(A*256+B)",
"minValue": "300",
"maxValue": "480",
"type": "Number",
"command": "223203",
"ecu": "DADAF1"
},
"current": {
"equation": "0.25*((A*256+B)-32768)",
"minValue": "-400",
"maxValue": "400",
"type": "Number",
"command": "223204",
"ecu": "DADAF1"
},
"soh": {
"equation": "1*(A*256+B)",
"minValue": "0",
"maxValue": "105",
"type": "Number",
"command": "223206",
"ecu": "DADAF1"
},
"batt_temp": {
"equation": "(0.0625*(A*256+B))-640",
"minValue": "-20",
"maxValue": "55",
"type": "Number",
"command": "229012",
"ecu": "DADAF1"
}
}
Thomas
This are the updated PID's.
I'd like to try them....