Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve documentation #29

Merged
merged 1 commit into from
Nov 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ ESPHome component to monitor a DALY Battery Management System via BLE

## Supported devices

* Daly Smart BMS K Series 100A advertised via BLE as `DL-xxxxxxxxxxxx` f.e. `DL-40D63C3223A2`
* Daly Smart BMS K Series 100A advertised via BLE as `DL-xxxxxxxxxxxx` (e.g. `DL-40D63C3223A2`) or `DL-Fxxxxxxxxxxxx` (e.g. `DL-F28BBED000824`) where the MAC address is the `xxxxxxxxxxxx`
* Probably all models of the Daly Smart BMS H/K/M/S series (start of frame: `0xD2`, Modbus frames)

## Unsupported devices because of a different protocol
Expand Down
5 changes: 5 additions & 0 deletions esp32-ble-example.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,14 +67,19 @@ binary_sensor:

button:
- platform: daly_bms_ble
# Retrieves the BMS settings and prints them in the ESPHome logs
retrieve_settings:
name: "${name} retrieve settings"
# Restarts the BMS
restart:
name: "${name} restart"
# Shuts down the BMS
shutdown:
name: "${name} shutdown"
# Resets the BMS to the factory settings
factory_reset:
name: "${name} factory reset"
# Resets the BMS current to zero
reset_current:
name: "${name} reset current"

Expand Down
Loading