Skip to content

ForrestFire0/GenericBMSArduino

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Generic BMS Reader for Arduino

Want to access all that juicy battery data from your BMS without having to use computer software to read the info? Want to display all that data on an Arduino driven LCD or OLED? You have come to the right place.

This is an Arduino library that communicates data from Generic Chinese BMSs. Might work with:

  • BMSs from lithiumbatterypcb.com aka LLT Power
  • 'Xiaoxiang' BMS
  • Some BMS's Labelled "Smart BMS"
Aka, if your board looks like this:

Image of Generic BMS

It is probably going to work. Mine was a 21s so it had two of the 16 pin JST connectors at the base. All cell counts should work. You can always check if the UART protocol matches the protocol linked at the bottom of the page.

Step 1: Wiring

  1. Wire your BMS to the cells and to the load as normal.
  2. Connect the Arduino
  3. Connect the ground of the arduino to the ground of the BMS
  4. Connect the RX and TX to any two pins on the Arduino
  5. DO NOT CONNECT THE PIN TO VCC. You may connect this pin (which supplies ~10.5 volts) to VIN if you wish to power the Arduino from the BMS.

Step 2: Setting up the code

Just copy the example code!

  1. Set the number of cells with "#define NUM_CELLS"
  2. Set the number of temperature probes with "#define NUM_TEMP_PROBES"
  3. Create a Software Serial object.
  4. Inside void setup(), begin the Software Serial port at 9600 baud.
  5. Inside void setup(), pass the software serial object to the BMS object.
#define BMS_RX_PIN 2 //pin the bms is reciving signals on, where we are sending.
#define BMS_TX_PIN 3 //pin the BMS is sending signals to, where we are recieving.
#define NUM_CELLS 21
#define NUM_TEMP_PROBES 4

#include <SoftwareSerial.h>
#include <BMS.h>
SoftwareSerial BMSSerial(BMS_TX_PIN, BMS_RX_PIN);
BMS bms;

void setup() {
    Serial.begin(115200);
    
    BMSSerial.begin(9600);
    bms.begin(&BMSSerial);
    
    Serial.println("Finished setup");
}

Step 3: Reading the Data

  1. Call "bms.update()"
  2. Call the appropriate methods to return the relevant data:
float *getCells() { return cells; }
uint32_t getBalanceState() { return balanceState; }
float getPackVoltage() { return packVoltage; }
float getPackCurrent() { return packCurrent; }
float getCellMaxVoltage() { return cellMax; }
float getCellMinVoltage() { return cellMin; }
float getCellDiff() { return cellDiff; }
byte getNumProbes() { return NUM_TEMP_PROBES; }
float *getProbeData() { return probes; }
MOSFET_STATUS getMOSFETStatus() { return MOSFETStatus; }

Note about using the MOSFETStatus struct: just do "bms.getMOSFETStatus().discharge" to get whether discharge is permitted and "bms.getMOSFETStatus().charge" to get whether charger is permitted.

Sources and Helpful Links

  1. Another Smart BMS Reader designed for a similar purpose. I would have used this version if it had been in the traditional Arduino Library format (import, instantiate, start, call methods...), or easier to understand.
  2. My copy of the spreadsheet defining the BMS Protocol that explains the protocol and how to communicate with the BMS. I also color coded one of the responses so you can see what bytes mean what.
  3. Any other information you might ever need plus a TON of helpful links that I won't duplicate.

About

BMS reader for generic chinese BMS.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages