Page 1 of 1

ISO TP can Kangoos BMS

Posted: Thu Feb 01, 2024 9:36 pm
by Bigpie
Anyone got any info on using ISO TP to request data from a Kangoo BMS, source code would be even better.

Re: ISO TP can Kangoos BMS

Posted: Fri Feb 02, 2024 7:39 am
by uhi22
There is the CANze app, which should be able to read out the BMS data. This seems to be open source here: https://github.com/fesch/CanZE
On first look I was not able to find the details there, but they should.

Re: ISO TP can Kangoos BMS

Posted: Fri Feb 02, 2024 8:54 am
by Aragorn
Dalas battery emulator project also has code for querying the Kangoo BMS.

Re: ISO TP can Kangoos BMS

Posted: Fri Feb 02, 2024 9:49 am
by Bigpie
Dalas battery emulator doesn't do iso to to query each cell measurement. It does decide some frames it sends out though with normal can

[EDIT]
Actually, it does look at to a bit of ISOTP can, 0x7BB I think is a response frame ID from the BMS. So I need to do more reading to workout how to expand this to get more info.

Re: ISO TP can Kangoos BMS

Posted: Fri Feb 02, 2024 10:58 am
by uhi22
On my Hyundai I use TorquePro. Maybe we find the pid definitions which TorquePro would use for the ZE, maybe also these for Zoe, which may be similar. First try with Google did not succeed.

Re: ISO TP can Kangoos BMS

Posted: Wed Feb 07, 2024 2:29 pm
by Bigpie
Ive figured it out, and now working on some code, will add the github when it's done.
Screenshot 2024-02-07 at 2.28.25 pm.png
Some values still need some work, but I'm able to query all the cell voltages and some other values.

Re: ISO TP can Kangoos BMS

Posted: Sat Feb 10, 2024 12:00 am
by f0ld
uhi22 wrote: Fri Feb 02, 2024 7:39 am There is the CANze app, which should be able to read out the BMS data. This seems to be open source here: https://github.com/fesch/CanZE
On first look I was not able to find the details there, but they should.
CanZE actually reads mostly diagnostic data on free frames that come through a gateway from the Battery Can.
Still ISO-TP but depending on the Use-Case (e.g. directly connecting to the battery can) I wouldnt recommend it. Some reliability issues there as well.
The story how the CanZE and the DDT4All teams got the assets is also very interesting. They have a complete documentation of (at least) the complete zoe free frames and which modules they belong to. (Selected) ISO-TP formatted commands were carfully added only afterwards.

Regarding ISO TP there is a great (unlisted) youtube video from the CanZE Devs that might help you. Renault BMS are known to be a bit petulant about some some minor details (e.g. timing). So if something doesnt work check for those things first :)

Re: ISO TP can Kangoos BMS

Posted: Sat Feb 10, 2024 8:41 am
by Bigpie
Screenshot 2024-02-10 at 8.37.35 am.png
Thanks, I'll give it a watch. Interested in now they get the ISO-TP response mappings. I've got much of it now, I think, but would be nice to be able to confirm with something 'official'

I couldn't get canZE to work with just the pack.

Re: ISO TP can Kangoos BMS

Posted: Wed Jul 30, 2025 2:13 pm
by Federico
Bigpie wrote: Wed Feb 07, 2024 2:29 pm Ive figured it out, and now working on some code, will add the github when it's done.
Screenshot 2024-02-07 at 2.28.25 pm.png
Some values still need some work, but I'm able to query all the cell voltages and some other values.
Hey Bigpie,

I came across your post about the Kangoo LG Chem BMS — super cool stuff!
Just wondering if you've made any more progress since then? Like, figured out more CAN messages or done anything else with it?

Would love to hear how it's going if you're up for sharing.
Cheers!

Re: ISO TP can Kangoos BMS

Posted: Wed Jul 30, 2025 4:18 pm
by Bigpie
I've been using the pack for 14 months or so, around 8-9k miles without issue. I've confirmed the values with a diagnostic tool too so pretty happy with it.

I've added support for this pack to Zombieverter VCU so it just be used with that.

Re: ISO TP can Kangoos BMS

Posted: Mon Aug 04, 2025 12:12 pm
by Federico
Federico wrote: Wed Jul 30, 2025 2:13 pm Hey Bigpie,

I came across your post about the Kangoo LG Chem BMS — super cool stuff!
Just wondering if you've made any more progress since then? Like, figured out more CAN messages or done anything else with it?

Would love to hear how it's going if you're up for sharing.
Cheers!
Awesome to hear you added support for the pack in Zombieverter, that’s super helpful!
Did you happen to upload it anywhere, like a repo or a branch with your implementation?
I’d love to check it out and give it a try.

Re: ISO TP can Kangoos BMS

Posted: Mon Aug 04, 2025 12:48 pm
by Bigpie
It's in the released version now.

Re: ISO TP can Kangoos BMS

Posted: Wed Nov 12, 2025 2:27 pm
by Federico
Bigpie wrote: Wed Feb 07, 2024 2:29 pm Ive figured it out, and now working on some code, will add the github when it's done.
Screenshot 2024-02-07 at 2.28.25 pm.png
Some values still need some work, but I'm able to query all the cell voltages and some other values.
Hi Bigpie,
How did you manage to get the individual cell voltages? Did you find a way to perform the required ISO-TP request?
I was having a look at the ZombieVerter code, but at first glance it seems to handle only standard CAN.
I saw that Jamie Jones has been working on this
(https://github.com/jamiejones85/Kangoo36_canDecode)

but I’m not familiar with the BMS used in the 36 pack.
For testing, I’ve got the 22 pack with the white BMS.

Re: ISO TP can Kangoos BMS

Posted: Wed Nov 12, 2025 3:46 pm
by Bigpie
I am he. Zombieverter doesn't need to know the individual cell values so haven't implemented that in zombie. Other than the decoder I put on GitHub I've not touched it since, but I never automated the isotp to request them, I just sent them with savvycan.

Re: ISO TP can Kangoos BMS

Posted: Thu Nov 13, 2025 4:58 pm
by Federico
I’m also interested in doing the requests manually for now, but the problem is I don’t really know the IDs or the payloads. From your logs it looks like you got those voltage values, maybe you know which IDs and payloads those are?