From ffe9e171708131ec4d7244c574787ef8d53fb9ca Mon Sep 17 00:00:00 2001 From: Home Assistant Version Control Date: Tue, 28 Jul 2026 15:24:23 +0000 Subject: [PATCH] configuration.yaml --- configuration.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/configuration.yaml b/configuration.yaml index d51a0f3..16fa879 100644 --- a/configuration.yaml +++ b/configuration.yaml @@ -175,6 +175,16 @@ template: {{ states('sensor.blink_backyard_temperature_clean') }} {% endif %} + # POOL PUMP SENSOR: Converts kW sensor to Watts for Watt-based gauge cards + - name: "Pool Pump Estimated Power Draw Watts" + unique_id: pool_pump_estimated_power_draw_watts + unit_of_measurement: "W" + device_class: power + state_class: measurement + state: > + {% set kw = states('sensor.pool_pump_estimated_power_draw') | float(0) %} + {{ (kw * 1000) | round(0) }} + # HTTP Proxy Configuration http: use_x_forwarded_for: true