feat(dashboards): data-dense Overview, dedicated UPS tab, Automations tab [#344]
Overview: at-a-glance markdown (UPS/PDU/hottest temps/fleet count) + Power entities + key-temp history; giant status card dropped. New UPS view (charge+runtime gauges, battery V, 7d charge / 24h V+runtime graphs, unit facts incl. no-input/output-voltage note, UPS automations). Automations moved to own tab with trend sensors. NUT runtime/voltage/ setpoint entities enabled via registry (disabled-by-default). New pfv_ups_runtime_minutes template sensor. https://projects.knownelement.com/issues/344
This commit is contained in:
@@ -641,3 +641,10 @@ template:
|
||||
state: >-
|
||||
{% set v = states('sensor.pfv_tsys9_pch_temperature_raw') %}
|
||||
{{ ((v | float * 9 / 5) + 32) | round(1) if is_number(v) else none }}
|
||||
- name: "PFV UPS runtime minutes"
|
||||
unique_id: pfv_ups_runtime_minutes
|
||||
device_class: duration
|
||||
unit_of_measurement: "min"
|
||||
state: >-
|
||||
{% set v = states('sensor.tsys1_ups_battery_runtime') %}
|
||||
{{ (v | float / 60) | round(0) if is_number(v) else none }}
|
||||
|
||||
Reference in New Issue
Block a user