Skip to content

Commit

Permalink
fixup! Tweak devices status card
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris-V committed Jul 14, 2024
1 parent 3bbf787 commit 9e57189
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions dashboards/views/network.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -70,16 +70,20 @@
entities:
- type: "custom:template-entity-row"
entity: "binary_sensor.ground_floor_heat_pump_status"
secondary: "{{ state_translated('sensor.ground_floor_heat_pump_uptime') }}"
secondary: "{{ time_since('sensor.ground_floor_heat_pump_uptime', 1) }}"
active: "{{ is_state('this.entity_id ', 'on') }}"
- type: "custom:template-entity-row"
entity: "binary_sensor.kitchen_proxy_status"
secondary: "{{ state_translated('sensor.kitchen_proxy_uptime') }}"
secondary: "{{ time_since('sensor.kitchen_proxy_uptime', 1) }}"
active: "{{ is_state('this.entity_id ', 'on') }}"
- type: "custom:template-entity-row"
entity: "binary_sensor.lounge_proxy_status"
secondary: "{{ state_translated('sensor.lounge_proxy_uptime') }}"
secondary: "{{ time_since('sensor.lounge_proxy_uptime', 1) }}"
active: "{{ is_state('this.entity_id ', 'on') }}"
- type: "custom:template-entity-row"
entity: "binary_sensor.office_proxy_status"
secondary: "{{ state_translated('sensor.office_proxy_uptime') }}"
secondary: "{{ time_since('sensor.office_proxy_uptime', 1) }}"
active: "{{ is_state('this.entity_id ', 'on') }}"

- type: entities
show_header_toggle: false
Expand Down

0 comments on commit 9e57189

Please sign in to comment.