configuration.yaml
This commit is contained in:
@@ -175,6 +175,16 @@ template:
|
|||||||
{{ states('sensor.blink_backyard_temperature_clean') }}
|
{{ states('sensor.blink_backyard_temperature_clean') }}
|
||||||
{% endif %}
|
{% 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 Proxy Configuration
|
||||||
http:
|
http:
|
||||||
use_x_forwarded_for: true
|
use_x_forwarded_for: true
|
||||||
|
|||||||
Reference in New Issue
Block a user