configuration.yaml

This commit is contained in:
Home Assistant Version Control
2026-07-28 15:24:23 +00:00
parent 4c73e4dc1c
commit ffe9e17170
+10
View File
@@ -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