Skip to content

Commit 400171d

Browse files
docs(ohme): energy sensor removed in HA 2026.8.0, recommend a Riemann sum helper (#4465)
Home Assistant 2026.8.0 removed the Ohme integration's energy sensor entirely (home-assistant/core#174664) - it was estimating car battery level rather than charger energy delivered, so there's no direct replacement. Point users at deriving it from the still-present power sensor via a Riemann sum integral helper instead, per the upstream PR's own migration guidance. Fixes #4458 Co-authored-by: Claude Sonnet 5 <noreply@anthropic.com>
1 parent 2d15459 commit 400171d

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

docs/devices.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,11 @@ If you are on the Octopus Intelligent GO tariff the integration can be used to m
7272

7373
**car charging energy**
7474

75+
Home Assistant 2026.8.0 removed the Ohme integration's `energy` sensor entirely - it was estimating the car's battery level rather than energy delivered by the charger, so there's no direct replacement sensor. The recommended approach is to derive it yourself from the `power` sensor using a [Riemann sum integral helper](https://www.home-assistant.io/integrations/integration/) (Settings / Devices & Services / Helpers / Add Helper / Integration - Riemann sum integral), pointed at `sensor.ohme_{ohme_name}_power`, with unit `kWh` and method `left`.
76+
7577
```yaml
7678
ohme_name: 're:time.ohme_(.+)_target_time'
77-
car_charging_energy: 'sensor.ohme_{ohme_name}_energy'
79+
car_charging_energy: 'sensor.<your_riemann_sum_helper_name>'
7880
```
7981

8082
**Car charging planned**

0 commit comments

Comments
 (0)