.ha_mcp/logs/mcp_usage.jsonl, configuration.yaml

This commit is contained in:
Home Assistant Version Control
2026-07-28 15:27:19 +00:00
parent 8becc66f0a
commit 08a970f16b
2 changed files with 11 additions and 0 deletions
+10
View File
@@ -185,6 +185,16 @@ template:
{% set kw = states('sensor.pool_pump_estimated_power_draw') | float(0) %}
{{ (kw * 1000) | round(0) }}
# HVAC SENSOR: Converts kW sensor to Watts for Watt-based gauge cards
- name: "HVAC Real-Time Power Draw Watts"
unique_id: hvac_real_time_power_draw_watts
unit_of_measurement: "W"
device_class: power
state_class: measurement
state: >
{% set kw = states('sensor.hvac_real_time_power_draw') | float(0) %}
{{ (kw * 1000) | round(0) }}
# HTTP Proxy Configuration
http:
use_x_forwarded_for: true