Skip to content

This integration allows to monitor Bluetooth Low Energy (BLE) battery management systems (BMS) from within Home Assistant.

License

Notifications You must be signed in to change notification settings

patman15/BMS_BLE-HA

Repository files navigation

BLE Battery Management Systems for Home Assistant

GitHub Release License

This integration allows to monitor Bluetooth Low Energy (BLE) battery management systems (BMS) from within Home Assistant. After installation, no configuration is required. You can use the ESPHome Bluetooth proxy to extend the bluetooth coverage range. By using standard dashboard cards, it is easy to visualize the current state of remote batteries.

dashboard

Features

  • Zero configuration
  • Autodetects compatible batteries
  • Supports ESPHome Bluetooth proxy (BT proxy limit: 3 devices/proxy)
  • Any number of batteries in parallel
  • Native Home Assistant integration (works with all HA installation methods)
  • Readout of individual cell voltages to be able to judge battery health

Supported Devices

  • Offgridtec LiFePo4 Smart Pro: type A & B (show up as SmartBat-A… or SmartBat-B…)
  • Daly BMS (show up as DL-…)
  • JK BMS, Jikong, (HW version >=11 required)
  • JBD BMS, Jiabaida
  • Supervolt batteries (JBD BMS)
  • Seplos v3 (show up as SP0…)

New device types can be easily added via the plugin architecture of this integration. See the contribution guidelines for details.

Provided Information

The integration provides the following information about the battery

Platform Description Unit Details
sensor SoC (state of charge) % range 100% (full) to 0% (battery empty)
sensor stored energy Wh currently stored energy
sensor voltage V overall battery voltage
sensor current A positive for charging, negative for discharging
sensor power W positive for charging, negative for discharging
sensor temperature °C
sensor (remaining) runtime s remaining discharge time till SoC 0%
sensor charge cycles #
sensor delta voltage V maximum difference between any two cells; individual cell voltage are available as attribute to this sensor
binary_sensor battery charging indicator bool true if battery is charging

Installation

Automatic

Installation can be done using HACS by adding a custom repository.

Open your Home Assistant instance and open a repository inside the Home Assistant Community Store.

Manual

  1. Using the tool of choice open the directory (folder) for your HA configuration (where you find configuration.yaml).
  2. If you do not have a custom_components directory (folder) there, you need to create it.
  3. In the custom_components directory (folder) create a new folder called bms_ble.
  4. Download all the files from the custom_components/bms_ble/ directory (folder) in this repository.
  5. Place the files you downloaded in the new directory (folder) you created.
  6. Restart Home Assistant
  7. In the HA UI go to "Configuration" -> "Integrations" click "+" and search for "BLE Battery Management"

Outlook

Troubleshooting

In case you have severe troubles,

  • please enable the debug protocol for the integration,
  • reproduce the issue,
  • disable the log (Home Assistant will prompt you to download the log), and finally
  • open an issue with a good description of what happened and attach the log.

FAQ

My sensors show unknown/unavailable at startup!

The polling interval is 30 seconds. So at startup it takes a few minutes to detect the battery and query the sensors. Then data will be available.

Can I have the runtime in human readable format (using days)?

Yes, you can use a template sensor or a card to show templates, e.g. Mushroom template card with the following template:
{{ timedelta(seconds=int(states("sensor.smartbat_..._runtime"), 0)) }} results in e,g, 4 days, 4:20:00

How do I get the cell voltages as individual sensor for tracking?

The individual voltages are available as attribute to the delta voltage sensor. Click the sensor and at the bottom of the graph expand the attribute section. Alternatively, you can also find them in the developer tools. To create individual sensors, go to Settings > Devices & Services > Helper and add a template sensor for each cell you want to monitor. Fill the configuration for, e.g. the first cell (0), as follows:

Field Content
State template {{ state_attr("sensor.smartbat_..._delta_voltage", "cell_voltages")[0] }}
The index [0] can be in the range from 0 to the number of cells-1, i.e. 0-3 for a 4 cell battery.
Unit of measurement V
Device class Voltage
State class Measurement
Device smartbat_...

I want to know the maximum cell voltage!

Please follow the explanations in the previous question but use the following:

Field Content
State template {{ state_attr("sensor.smartbat_..._delta_voltage", "cell_voltages") | max }}

There are plenty more functions you can use, e.g. min, and the full power of templating.

I need a discharge sensor not the charging indicator, can I have that?

Sure, use, e.g. a threshold sensor based on the current to/from the battery. Negative means discharging, positiv is charging.

Thanks to

@downset, @gerritb, @Goaheadz

for helping with making the integration better.

References