I am having some problems with them, and I have a feeling it might be their BMS that's causing issues.
In the data sheets there is on this website Gacell, it states that an adapter and program are needed to communicate with it, but it doesn't specify what the program is called or where to get the right adapter. It also mentions that there should be Bluetooth built-in so that you can use your phone, but unfortunately, it doesn't specify which app to use.
If it works... it has been called "tipping in"... Your three-wire JST could be async, serial comms with TX, RX and GND. Connect to a comm port, start a comm program like PuTTY or HyperTerm, and tap <RETURN> on your keyboard to see if communications start. You might have to try a few baud rates, like 9600, 2400, 115200.
The GACELL web page you linked has a lot of detailed documentation on the battery and associated BMS, complete with circuit diagrams. Have you studied any of it?
I looks like its easier just replace those bms with something better. Because it seems that the bms in all 4 batteries have failed to do their job when I look into it.
2 batteries are stuck on 22.50v and won't take charge.
1 battery are stuck at 0,00v
1 battery are stuck at 17v and when I investigated the batteri the plastic was beginning to melt underneath the label. So when I took it apart I saw the BMS have failed and overheated and therefore is dead.
The configuration I have been using them in is 2s2p
The 0v and 17v battery was in series and clearly one of them failed and taking the other one with it.
The two batteries with 22.50v was in series and have probably keept discharging because the two other failed and are now stuck in safe state.
I'm considering just taking all 4 batteries apart and build them into a 48v pack instead with 1 proper bms.
I can't even find a new BMS of this model just to replace it.
Okay I looked a little into CAN bus communication and understand the basics of it now. It's quite neat.
I also discovered that the Arduino need an adaptor to support it but that the ESP32 has build in CAN communication.
It happens that I actually have some ESP32 laying around also.
I have tried watching some YouTube videos of how to use it on a ESP32 but they all seems to connect an extra module to communicate with whatever device they have.
It confuses me, because should the ESP32 not be capable of do it without any additional hardware?
CAN bus uses balanced communications, with voltage levels that are not necessarily compatible with MCU digital inputs, so in general, you need dual line CAN RX/TX interfaces for the signals.
Oh you mean that the ESP32 operates with 3.3v but the BMS might be communicating using 5v so therefore I would need a level switching device so I don't fry the ESP32?
To be honest I'm getting more and more confused about this CAN communication.
Because I can find super expensive CAN to USB adaptors but also super cheap, and then there this mention of CANopen profile SAEJ1939 which is for vehicle communication if I understand it correctly, then I get even more puzzled about what software to use.