Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
78a8ee4ab5
|
@@ -119,10 +119,6 @@ recorder:
|
|||||||
- sensor.*_rssi
|
- sensor.*_rssi
|
||||||
- sensor.weatherflow_hub*
|
- sensor.weatherflow_hub*
|
||||||
- sensor.internet_round_trip*
|
- sensor.internet_round_trip*
|
||||||
- sensor.*_monitor_type
|
|
||||||
- sensor.*_certificate_expiry
|
|
||||||
- sensor.*_monitored_url
|
|
||||||
- sensor.*_response_time
|
|
||||||
entities:
|
entities:
|
||||||
- sensor.avg_ping
|
- sensor.avg_ping
|
||||||
- sensor.max_ping
|
- sensor.max_ping
|
||||||
@@ -284,11 +280,6 @@ influxdb:
|
|||||||
- binary_sensor.asus_laptop*
|
- binary_sensor.asus_laptop*
|
||||||
- sensor.*ashland*
|
- sensor.*ashland*
|
||||||
- sensor.*kasx*
|
- sensor.*kasx*
|
||||||
- sensor.*_monitor_type
|
|
||||||
- sensor.*_certificate_expiry
|
|
||||||
- sensor.*_monitored_url
|
|
||||||
- sensor.*_response_time
|
|
||||||
- sensor.*_status
|
|
||||||
entities:
|
entities:
|
||||||
- media_player.living_room_tv
|
- media_player.living_room_tv
|
||||||
- media_player.basement_tv
|
- media_player.basement_tv
|
||||||
@@ -461,11 +452,6 @@ prometheus:
|
|||||||
- binary_sensor.asus_laptop*
|
- binary_sensor.asus_laptop*
|
||||||
- sensor.*ashland*
|
- sensor.*ashland*
|
||||||
- sensor.*kasx*
|
- sensor.*kasx*
|
||||||
- sensor.*_monitor_type
|
|
||||||
- sensor.*_certificate_expiry
|
|
||||||
- sensor.*_monitored_url
|
|
||||||
- sensor.*_response_time
|
|
||||||
- sensor.*_status
|
|
||||||
include_entities:
|
include_entities:
|
||||||
- media_player.living_room_tv
|
- media_player.living_room_tv
|
||||||
- media_player.basement_tv
|
- media_player.basement_tv
|
||||||
|
|||||||
@@ -273,6 +273,14 @@ input_select:
|
|||||||
- White Noise
|
- White Noise
|
||||||
- N/A
|
- N/A
|
||||||
icon: mdi:home-thermometer
|
icon: mdi:home-thermometer
|
||||||
|
current_climate_mode_master_bedroom:
|
||||||
|
name: Current Climate Mode - Master Bedroom
|
||||||
|
options:
|
||||||
|
- None
|
||||||
|
- Day Mode
|
||||||
|
- Night Mode
|
||||||
|
- Bedtime Mode
|
||||||
|
- Shower Mode
|
||||||
|
|
||||||
input_number:
|
input_number:
|
||||||
master_bedroom_daytime_temp:
|
master_bedroom_daytime_temp:
|
||||||
|
|||||||
@@ -47,6 +47,7 @@ ## HACS Components
|
|||||||
- [PyScript](https://github.com/custom-components/pyscript)
|
- [PyScript](https://github.com/custom-components/pyscript)
|
||||||
- [Hass Animated Scenes](https://github.com/chazzu/hass-animated-scenes)
|
- [Hass Animated Scenes](https://github.com/chazzu/hass-animated-scenes)
|
||||||
- [Jokes](https://github.com/LaggAt/ha-jokes)
|
- [Jokes](https://github.com/LaggAt/ha-jokes)
|
||||||
|
- [Uptime Kuma](https://github.com/meichthys/uptime_kuma)
|
||||||
- [Jellyfin](https://github.com/koying/jellyfin_ha)
|
- [Jellyfin](https://github.com/koying/jellyfin_ha)
|
||||||
- [Sonoff LAN](https://github.com/AlexxIT/SonoffLAN)
|
- [Sonoff LAN](https://github.com/AlexxIT/SonoffLAN)
|
||||||
- [Powercalc](https://github.com/bramstroker/homeassistant-powercalc)
|
- [Powercalc](https://github.com/bramstroker/homeassistant-powercalc)
|
||||||
|
|||||||
@@ -450,19 +450,18 @@
|
|||||||
unit_of_measurement: ''
|
unit_of_measurement: ''
|
||||||
icon: mdi:close-network-outline
|
icon: mdi:close-network-outline
|
||||||
state: >
|
state: >
|
||||||
{% set uptimekuma = states.sensor |
|
{% set uptimekuma = states.binary_sensor |
|
||||||
selectattr('entity_id','in',integration_entities('192.168.1.111')) |
|
selectattr('entity_id','in',integration_entities('uptime_kuma')) |
|
||||||
selectattr('state','eq','down') |
|
selectattr('state','eq','off') |
|
||||||
map(attribute='attributes.friendly_name') |
|
map(attribute='attributes.friendly_name') |
|
||||||
list %}
|
list %}
|
||||||
{{ uptimekuma | count | int }}
|
{{ uptimekuma | count | int }}
|
||||||
attributes:
|
attributes:
|
||||||
services: >
|
services: >
|
||||||
{% set uptimekuma = states.sensor |
|
{% set uptimekuma = states.binary_sensor |
|
||||||
selectattr('entity_id','in',integration_entities('192.168.1.111')) |
|
selectattr('entity_id','in',integration_entities('uptime_kuma')) |
|
||||||
selectattr('state','eq','down') |
|
selectattr('state','eq','off') |
|
||||||
map(attribute='attributes.friendly_name') |
|
map(attribute='attributes.friendly_name') |
|
||||||
map('regex_replace', ' Status$', '') |
|
|
||||||
list %}
|
list %}
|
||||||
{{ uptimekuma | join(', ') }}
|
{{ uptimekuma | join(', ') }}
|
||||||
- name: Media Server Viewer Health
|
- name: Media Server Viewer Health
|
||||||
|
|||||||
Reference in New Issue
Block a user