From a0085844377cfeaddb02fde77a13b0e3181cff71 Mon Sep 17 00:00:00 2001 From: Felipe Santos Date: Mon, 11 Nov 2024 17:45:13 -0300 Subject: [PATCH] Improve documentation --- README.md | 2 +- esp32-ble-example.yaml | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 0fd2def..92ce11c 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/esp32-ble-example.yaml b/esp32-ble-example.yaml index 699127a..71dca29 100644 --- a/esp32-ble-example.yaml +++ b/esp32-ble-example.yaml @@ -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"