It's a tale full of hope, lessons, struggles, and breakthroughs!
Jehu struggled at first, but with his signature spunk and get-it-done attitude, he found the way to awaken these beauties, and to victory!
Jehu has made videos about how to do it. Here's a step-by-step guide to awakening the scooter batteries BMS with a digital key.
First you will need to get the JAG35 scooter battery packs: 40 CELL NCR18650BD 18650 LITHIUM SCOOTER BATTERY PACK W/CASE
These scooter packs normally come with female connectors attached, so you will need to get the male connectors: MALE BATTERY CONNECTOR FOR SCOOTER BATTERIES OKAI ES200G
These are the male battery connectors you need for your OKAI ES200G scooter battery modules to connect to the programmed Arduino that "wake up" the scooter batteries. Each battery pack needs a male connector.
Any voltage below 30v at the Discharge port is an indication that the BMS is hibernation mode. The Internal BMS can be turned on by applying voltage to the charging port (smaller cable) The battery pack will remain in the "ON" state for as long as it has a voltage of 30v or above and without a load. Applying a load will cause the battery to shut 'OFF" after 5 seconds then remain off for 60 seconds, ON for 5 seconds, OFF for 60 seconds for an indefinite amount of cycles. Using this Arduino Controller connected to the blue cable will instruct the BMS to remain ON for an indefinite amount of time.
You'll need this Arduino Controller: PRE-PROGRAMED ARDUINO TO WAKE OKAI ES200G SCOOTER BATTERIES
This MicroController is used in conjunction with the Okai ES200G scooter Battery Packs. These battery packs require a status/unlock signal to their BLUE (Tx) wire with 9600 Baud serial: 0x3A, 0x13, 0x01, 0x16, 0x79
Then the battery replies with an extensive status report on the GREEN (Rx) wire. We are currently designing a device to display the status report from the battery, but for now we can turn them on and use them to power many 36v devices. The Arduino is pre-Programmed with the following code:
void setup() {
Serial.begin(9600);
}
void loop() {
// 0x3A, 0x13, 0x01, 0x16, 0x79
Serial.write(0x3A);
Serial.write(0x13);
Serial.write(0x01);
Serial.write(0x16);
Serial.write(0x79);
delay(5000);
}
You'll need 1 Arduino per scooter battery pack to keep it awake, or an ACTIVATING DONGLE to activate x1, x2 or x4 scooter packs. For more than 4 scooter packs, you can DIY a solution to send the signal to multiple packs at once, like Jehu's prototype here: DIY Powerwall Design - PCB PowerStrip.
(Shhh, just between us, Jehu has been working on a DIY Powerwall version of the dongle. It isn't ready for production yet, but it will be soon. Stay updated by signing up for Jehu's early access updates to be among the first to know about new products and deals: https://mailchi.mp/50c08f16b8db/newsletter-landing-page )
To power your Arduino you have to use a DC-DC that makes the battery packs 42v down to at least 3.6V. Jehu recommends the JAG35 ACTIVATING DONGLE which includes a DC-DC, or you can buy it on it's own: DIGI-KEY STH0548S3V3.
Here's a simple diagram for reference.
Most of these battery packs are in hibernation mode, this means that even though the pack is resting at around 30v the output connector shows sometimes 1v to 15v. This means the MOSFETS in the BMS are off.
To use the battery you have to charge the battery pack to 42v. Once charged, some packs will automatically turn on, others will require you to bridge the negative pins on both connectors together using a jumper cable. Applying 42v to the small charging port will also take the battery out of hibernation. If you don’t have the small connector you will have to cut the original connector and solder in your own. XT60 connectors work great here.
Jehu explains more in this video: Okai ES200G Battery Arduino Controller - DiY Powerwall Building
For more details, check out these videos where Jehu explains more on how to wake up the batteries:
The Best $125/Kwh DIY Powerwall On the Planet
How To make a 72V eBike battery capable of 1800W continuous
This should get you well on your way to "waking up" the scooter battery packs for your DIY power build.
Please share your comments with below, and remember to check out the deals in my store. Keep on building!
- Jehu
Visit my store:
7 comments
I received 8 scooter battery packs and have been going through the bring-up process. While the 8A charger is on the way from China, I have been using a 42V 1.5A power supply I happened to have for charging a 10S Lithium ion yard equipment battery. At 1.5A it’s been slow getting 8 packs charged, equalized, and activated to be ready to be all connected together for doing some testing. The activator dongle from here on Jag35 activated it just fine, plus one Jehu mentioned from Faustian Bargain Shop made by Aaron Shelhamer along with some scooter battery dongles from ebay user spiderpig131 (since they were sold out on Jag35) also worked just fine, so I didn’t have to cut into the cables coming out of the battery packs.
By activating the packs, I was able to get two packs in parallel to power a 36V inverter that was able to run my 1400W hot air gun. I plan to use these batteries and this 4000W rated Chinese inverter to run the window air conditioner unit and other electrical essentials through any power outages that come on the upcoming hottest summer days of the year in Texas. I have yet to test that the inverter can run the AC or how much runtime I get from 8 batteries. I may be ordering more from here to upgrade, and may add a solar charger and panels in the future.
I hooked up an oscilloscope to the output of the activator dongle, looks like it should for 3.3v TTL serial. I also hooked it up to the green and yellow wires and could not discern anything useful, nothing that appeared to be digital communication. Now that I see this article I see the green wire is supposed to provide battery status. I think I’ll cut away the heat shrinking I installed covering up the yellow and green wires and retry probing the green wires and try again to get useful data.
I received my 2 scooter packs this week, along with the 2x dongle. I also received the recommended charger from Amazon. Going to be testing the setup this weekend.
I plan on using these in my new Shed/Workshop to run my lights and low voltage stuff to start.
I plan on adding a couple of solar panels on the shed. I’m wondering if you have source for the plugs to go in the charger port, so I can separate the charge & load sides.
Thanks
JohnO