Compare commits
2 Commits
2993102ed8
...
9aedbc792d
Author | SHA1 | Date |
---|---|---|
github-actions[bot] | 9aedbc792d | |
CCOSTAN | 9e4a9ad520 |
|
@ -1,4 +1,7 @@
|
||||||
*.DISABLED
|
# .gitignore for Home Assistant - https://www.vcloudinfo.com/click-here
|
||||||
|
# Ignore common Home Assistant files and directories
|
||||||
|
|
||||||
|
# System files
|
||||||
*.pid
|
*.pid
|
||||||
*.xml
|
*.xml
|
||||||
*.csr
|
*.csr
|
||||||
|
@ -10,15 +13,41 @@
|
||||||
*.sqlite
|
*.sqlite
|
||||||
*.log*
|
*.log*
|
||||||
*.db
|
*.db
|
||||||
|
core.*
|
||||||
|
core
|
||||||
|
.uuid
|
||||||
|
|
||||||
|
# Home Assistant specific
|
||||||
|
*.DISABLED
|
||||||
.cloud
|
.cloud
|
||||||
.storage
|
.storage
|
||||||
.vscode
|
.vscode
|
||||||
.google.token
|
.google.token
|
||||||
.uuid
|
|
||||||
core.*
|
|
||||||
core
|
|
||||||
home-assistant_v2
|
home-assistant_v2
|
||||||
home-assistant_v2.*
|
home-assistant_v2.*
|
||||||
|
.homekit.state
|
||||||
|
ipchange.yaml
|
||||||
|
ip_bans.yaml
|
||||||
|
production_auth.json
|
||||||
|
OZW_Log.txt
|
||||||
|
.spotify-token-cache
|
||||||
|
google_calendars.yaml
|
||||||
|
.ring_cache.pickle
|
||||||
|
.ios.conf
|
||||||
|
|
||||||
|
# Configuration files
|
||||||
|
secrets.yaml
|
||||||
|
secrets
|
||||||
|
known_devices.yaml
|
||||||
|
entity_registry.yaml
|
||||||
|
.google_maps_location_sharing.cookies*
|
||||||
|
google_service_account.json
|
||||||
|
service_account.json
|
||||||
|
*.token
|
||||||
|
*.tokens
|
||||||
|
*.cookies
|
||||||
|
|
||||||
|
# Directories
|
||||||
backups
|
backups
|
||||||
deps
|
deps
|
||||||
/config/backups
|
/config/backups
|
||||||
|
@ -27,22 +56,10 @@ __pycache__
|
||||||
hacs
|
hacs
|
||||||
alexa_media
|
alexa_media
|
||||||
custom_components
|
custom_components
|
||||||
<<<<<<< HEAD
|
|
||||||
/config/www/community/
|
|
||||||
=======
|
|
||||||
/config/www/community
|
/config/www/community
|
||||||
>>>>>>> 5816fb3 (Add .gitignore file)
|
|
||||||
community
|
community
|
||||||
image
|
image
|
||||||
tts
|
tts
|
||||||
secrets.yaml
|
.ssh
|
||||||
secrets
|
.auth
|
||||||
known_devices.yaml
|
.nest
|
||||||
.homekit.state
|
|
||||||
ipchange.yaml
|
|
||||||
ip_bans.yaml
|
|
||||||
production_auth.json
|
|
||||||
OZW_Log.txt
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
2025.1.2
|
2025.1.3
|
|
@ -18,16 +18,6 @@ automation:
|
||||||
above: 60
|
above: 60
|
||||||
for:
|
for:
|
||||||
minutes: 20
|
minutes: 20
|
||||||
- platform: numeric_state
|
|
||||||
entity_id: sensor.refrigerator_freezer_temp
|
|
||||||
above: 5
|
|
||||||
for:
|
|
||||||
minutes: 10
|
|
||||||
- platform: numeric_state
|
|
||||||
entity_id: sensor.refrigerator_fridge_temp
|
|
||||||
above: 50
|
|
||||||
for:
|
|
||||||
minutes: 10
|
|
||||||
- platform: state
|
- platform: state
|
||||||
entity_id: binary_sensor.refrigerator_door_open
|
entity_id: binary_sensor.refrigerator_door_open
|
||||||
to: 'on'
|
to: 'on'
|
||||||
|
@ -42,12 +32,7 @@ automation:
|
||||||
- condition: numeric_state
|
- condition: numeric_state
|
||||||
entity_id: sensor.blink_blink1_temperature
|
entity_id: sensor.blink_blink1_temperature
|
||||||
above: 60
|
above: 60
|
||||||
- condition: numeric_state
|
|
||||||
entity_id: sensor.refrigerator_freezer_temp
|
|
||||||
above: 5
|
|
||||||
- condition: numeric_state
|
|
||||||
entity_id: sensor.refrigerator_fridge_temp
|
|
||||||
above: 50
|
|
||||||
- condition: state
|
- condition: state
|
||||||
entity_id: binary_sensor.refrigerator_door_open
|
entity_id: binary_sensor.refrigerator_door_open
|
||||||
state: 'on'
|
state: 'on'
|
||||||
|
@ -59,14 +44,10 @@ automation:
|
||||||
value1: >
|
value1: >
|
||||||
{% if trigger.platform == 'numeric_state' %}
|
{% if trigger.platform == 'numeric_state' %}
|
||||||
The Blink camera temperature sensor has detected {{ states('sensor.blink_blink1_temperature') }} degrees for over 20 minutes.
|
The Blink camera temperature sensor has detected {{ states('sensor.blink_blink1_temperature') }} degrees for over 20 minutes.
|
||||||
{% elif trigger.platform == 'binary_sensor' and trigger.entity_id == 'sensor.refrigerator_freezer_temp' %}
|
|
||||||
The freezer temperature has been above -1 degrees for over 10 minutes.
|
|
||||||
{% elif trigger.platform == 'binary_sensor' and trigger.entity_id == 'sensor.refrigerator_fridge_temp' %}
|
|
||||||
The fridge temperature has been above 50 degrees for over 10 minutes.
|
|
||||||
{% elif trigger.platform == 'binary_sensor' and trigger.entity_id == 'binary_sensor.refrigerator_door_open' %}
|
{% elif trigger.platform == 'binary_sensor' and trigger.entity_id == 'binary_sensor.refrigerator_door_open' %}
|
||||||
The fridge door has been open for over 10 minutes.
|
The fridge door has been open for over 10 minutes.
|
||||||
{% else %}
|
{% else %}
|
||||||
The fridge is still hot after the previous alert. The freezer temperature is {{ states('sensor.refrigerator_freezer_temp') }} degrees and the fridge temperature is {{ states('sensor.refrigerator_fridge_temp') }} degrees. {% if is_state('binary_sensor.refrigerator_door_open', 'on') %}The fridge door is currently open.{% endif %}
|
The fridge is still hot after the previous alert. The fridge temperature is {{ states('sensor.blink_blink1_temperature') }} degrees. {% if is_state('binary_sensor.refrigerator_door_open', 'on') %}The fridge door is currently open.{% endif %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
who: 'family'
|
who: 'family'
|
||||||
group: 'information'
|
group: 'information'
|
||||||
|
@ -75,7 +56,7 @@ automation:
|
||||||
|
|
||||||
- service: script.speech_engine
|
- service: script.speech_engine
|
||||||
data:
|
data:
|
||||||
value1: "Please check the fridge. The Blink camera in the fridge temperature is {{ states('sensor.blink_blink1_temperature') }} degrees, the freezer temperature is {{ states('sensor.refrigerator_freezer_temp') }} degrees, and the fridge temperature is {{ states('sensor.refrigerator_fridge_temp') }} degrees for over 20 minutes. {% if is_state('binary_sensor.refrigerator_door_open', 'on') %}The fridge door is currently open.{% endif %}"
|
value1: "Please check the fridge. The fridge temperature is {{ states('sensor.blink_blink1_temperature') }} degrees for over 20 minutes. {% if is_state('binary_sensor.refrigerator_door_open', 'on') %}The fridge door is currently open.{% endif %}"
|
||||||
no_fridge: 1
|
no_fridge: 1
|
||||||
|
|
||||||
- delay: 00:30:00
|
- delay: 00:30:00
|
||||||
|
|
|
@ -22,7 +22,7 @@ automation:
|
||||||
condition:
|
condition:
|
||||||
- condition: time
|
- condition: time
|
||||||
before: '03:00'
|
before: '03:00'
|
||||||
after: '05:00'
|
after: '04:00'
|
||||||
|
|
||||||
action:
|
action:
|
||||||
- service: script.notify_engine_two_button
|
- service: script.notify_engine_two_button
|
||||||
|
|
|
@ -17,6 +17,24 @@ automation:
|
||||||
### https://www.vcloudinfo.com/2020/05/home-assistant-neato-vacuum-automation.html
|
### https://www.vcloudinfo.com/2020/05/home-assistant-neato-vacuum-automation.html
|
||||||
##############################################################################
|
##############################################################################
|
||||||
|
|
||||||
|
- alias: 'Vacuum Sensor Cleaning Silencer'
|
||||||
|
id: 6548de52-a4a4-4df2-9d66-9c2c15577a7f
|
||||||
|
trigger:
|
||||||
|
- platform: numeric_state
|
||||||
|
entity_id: sensor.l10s_vacuum_sensor_dirty_left
|
||||||
|
below: 10
|
||||||
|
|
||||||
|
condition:
|
||||||
|
- condition: state
|
||||||
|
entity_id: sensor.l10s_vacuum_task_status
|
||||||
|
state: 'completed'
|
||||||
|
|
||||||
|
action:
|
||||||
|
- service: button.press
|
||||||
|
target:
|
||||||
|
entity_id: button.l10s_vacuum_reset_sensor
|
||||||
|
|
||||||
|
|
||||||
- alias: 'Help Vacuum'
|
- alias: 'Help Vacuum'
|
||||||
id: 6548de52-a4a4-4df2-9d66-9c2c15577a7e
|
id: 6548de52-a4a4-4df2-9d66-9c2c15577a7e
|
||||||
trigger:
|
trigger:
|
||||||
|
|
Binary file not shown.
Binary file not shown.
|
@ -1 +1 @@
|
||||||
import"./card-b90190e9.js";
|
import"./card-5c354d47.js";
|
||||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -1,16 +1,16 @@
|
||||||
<svg width="61.5" height="20" viewBox="0 0 615 200" xmlns="http://www.w3.org/2000/svg" role="img" aria-label="2025.1.2">
|
<svg width="61.5" height="20" viewBox="0 0 615 200" xmlns="http://www.w3.org/2000/svg" role="img" aria-label="2025.1.3">
|
||||||
<title>2025.1.2</title>
|
<title>2025.1.3</title>
|
||||||
<linearGradient id="yWLbW" x2="0" y2="100%">
|
<linearGradient id="NlzAj" x2="0" y2="100%">
|
||||||
<stop offset="0" stop-opacity=".1" stop-color="#EEE"/>
|
<stop offset="0" stop-opacity=".1" stop-color="#EEE"/>
|
||||||
<stop offset="1" stop-opacity=".1"/>
|
<stop offset="1" stop-opacity=".1"/>
|
||||||
</linearGradient>
|
</linearGradient>
|
||||||
<mask id="WDUKb"><rect width="615" height="200" rx="30" fill="#FFF"/></mask>
|
<mask id="LBoFO"><rect width="615" height="200" rx="30" fill="#FFF"/></mask>
|
||||||
<g mask="url(#WDUKb)">
|
<g mask="url(#LBoFO)">
|
||||||
<rect width="615" height="200" fill="#08C" x="0"/>
|
<rect width="615" height="200" fill="#08C" x="0"/>
|
||||||
<rect width="615" height="200" fill="url(#yWLbW)"/>
|
<rect width="615" height="200" fill="url(#NlzAj)"/>
|
||||||
</g>
|
</g>
|
||||||
<g aria-hidden="true" fill="#fff" text-anchor="start" font-family="Verdana,DejaVu Sans,sans-serif" font-size="110">
|
<g aria-hidden="true" fill="#fff" text-anchor="start" font-family="Verdana,DejaVu Sans,sans-serif" font-size="110">
|
||||||
<text x="65" y="148" textLength="500" fill="#000" opacity="0.25">2025.1.2</text>
|
<text x="65" y="148" textLength="500" fill="#000" opacity="0.25">2025.1.3</text>
|
||||||
<text x="55" y="138" textLength="500">2025.1.2</text>
|
<text x="55" y="138" textLength="500">2025.1.3</text>
|
||||||
</g>
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
|
Before Width: | Height: | Size: 811 B After Width: | Height: | Size: 811 B |
Loading…
Reference in New Issue