2020-09-06 13:44:40 -04:00
#-------------------------------------------
# @CCOSTAN
# Original Repo : https://github.com/CCOSTAN/Home-AssistantConfig
Standardizing on Headers for all YAML files.
- Updated comments in various YAML configuration files to provide clearer descriptions of functionalities and integrations.
- Improved documentation for alarm, alexa_media_player, backups, blink, cbyge, climate, finance, fridge, garadget, glances, hass_agent_homepc, holiday, ios, landscape_lighting, lightning, logger, medicine, nfc_tags, noonhome, office_motion, phynplus, powerwall, printer, processmonitor, proxmox, rachio, rheem_econet, roku, sleepiq, space, speedtest, stats, superbowl, vacuum, wireless, and youtube packages.
- Added relevant links and issue references where applicable to enhance user guidance and support.
2025-11-29 13:17:00 -05:00
# Blink Cameras - Motion snapshots and alerts via Blink integration.
2020-09-06 13:44:40 -04:00
#-------------------------------------------
Standardizing on Headers for all YAML files.
- Updated comments in various YAML configuration files to provide clearer descriptions of functionalities and integrations.
- Improved documentation for alarm, alexa_media_player, backups, blink, cbyge, climate, finance, fridge, garadget, glances, hass_agent_homepc, holiday, ios, landscape_lighting, lightning, logger, medicine, nfc_tags, noonhome, office_motion, phynplus, powerwall, printer, processmonitor, proxmox, rachio, rheem_econet, roku, sleepiq, space, speedtest, stats, superbowl, vacuum, wireless, and youtube packages.
- Added relevant links and issue references where applicable to enhance user guidance and support.
2025-11-29 13:17:00 -05:00
######################################################################
## Blink camera monitoring and notifications. https://amzn.to/3lOYTCv
######################################################################
2020-09-06 13:44:40 -04:00
### Automations
##############################################################################
automation :
- alias : 'Fridge Temp Watch'
id : 2346efcd-e8a8-4e86-b5b6-43eBl1nkFr1dge95f
mode : single
trigger :
- platform : numeric_state
entity_id : sensor.blink_blink1_temperature
2024-11-11 04:41:35 +00:00
above : 60
2020-09-06 13:44:40 -04:00
for :
minutes : 20
2025-01-17 19:45:32 +00:00
- platform : state
entity_id : binary_sensor.refrigerator_door_open
to : 'on'
for :
minutes : 10
2020-09-06 13:44:40 -04:00
- platform : event
event_type : event_fridge_still_hot_loop
condition :
2025-01-17 19:45:32 +00:00
condition : or
conditions :
- condition : numeric_state
entity_id : sensor.blink_blink1_temperature
above : 60
2025-01-22 15:55:48 +00:00
2025-01-17 19:45:32 +00:00
- condition : state
entity_id : binary_sensor.refrigerator_door_open
state : 'on'
2020-09-06 13:44:40 -04:00
action :
- service : script.notify_engine
2020-09-26 10:52:45 -04:00
data :
2020-09-06 13:44:40 -04:00
title : 'Check Fridge'
2025-01-17 19:45:32 +00:00
value1 : >
{% if trigger.platform == 'numeric_state' %}
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 == 'binary_sensor.refrigerator_door_open' %}
The fridge door has been open for over 10 minutes.
{% else %}
2025-01-22 15:55:48 +00:00
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 %}
2025-01-17 19:45:32 +00:00
{% endif %}
2020-09-06 13:44:40 -04:00
who : 'family'
2023-11-17 22:16:41 +00:00
group : 'information'
2020-09-06 13:44:40 -04:00
- wait_template : "{{ states.group.family.state == 'home' }}"
- service : script.speech_engine
2020-09-26 10:52:45 -04:00
data :
2025-01-22 15:55:48 +00:00
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 %}"
2020-09-11 22:23:54 -04:00
no_fridge : 1
2020-09-06 13:44:40 -04:00
2020-09-08 13:30:27 -04:00
- delay : 00 : 30 : 00
2020-09-06 13:44:40 -04:00
- event : event_fridge_still_hot_loop