mirror of
https://github.com/CCOSTAN/Home-AssistantConfig.git
synced 2025-09-13 15:26:58 +00:00
replace all the cuckoo clock sounds with horror october sounds. #984
This commit is contained in:
@@ -27,8 +27,6 @@ automation:
|
||||
|
||||
action:
|
||||
|
||||
- service: blink.blink_update
|
||||
|
||||
- service: script.notify_engine
|
||||
data:
|
||||
title: 'Check Fridge'
|
||||
|
@@ -67,6 +67,11 @@ mqtt:
|
||||
unit_of_measurement: '%'
|
||||
value_template: '{{ value_json.bright }}'
|
||||
|
||||
input_text:
|
||||
last_person_home:
|
||||
name: Last Person Home
|
||||
initial: 'Carlo'
|
||||
|
||||
group:
|
||||
garage_doors: # This group is used to check if doors are open or Closed.
|
||||
name: Garage Doors
|
||||
@@ -239,7 +244,7 @@ automation:
|
||||
id: 2819207a-1716-4552-be34-a8e0f7af004e
|
||||
trigger:
|
||||
- platform: numeric_state
|
||||
entity_id: ssensor.pirateweather_wind_speed
|
||||
entity_id: sensor.pirateweather_wind_speed
|
||||
above: 30
|
||||
|
||||
condition:
|
||||
@@ -267,7 +272,7 @@ automation:
|
||||
- service: script.speech_engine
|
||||
data:
|
||||
value1: >
|
||||
"The winds are picking up outside. The wind speed is {{ states('sensor.pirateweather_wind_speed')|round}} miles per hour. For safety, please close the garage doors.
|
||||
"The wind speed is {{ states('sensor.pirateweather_wind_speed')|round}} miles per hour. For safety, please close the garage doors.
|
||||
{% if is_state('cover.large_garage_door', 'open') -%}
|
||||
The Large Garage Door is open
|
||||
{% endif -%}
|
||||
|
@@ -1,50 +0,0 @@
|
||||
#-------------------------------------------
|
||||
# @CCOSTAN
|
||||
# Original Repo : https://github.com/CCOSTAN/Home-AssistantConfig
|
||||
# Read more about the house at https://vCloudInfo.com
|
||||
# https://github.com/CCOSTAN/Home-AssistantConfig/issues/813
|
||||
#-------------------------------------------
|
||||
|
||||
#-------------------------------------------
|
||||
# sensor:
|
||||
# - platform: travisci
|
||||
# api_key: !secret travisci_api
|
||||
# scan_interval: 2400
|
||||
# monitored_conditions:
|
||||
# - state
|
||||
#-------------------------------------------
|
||||
|
||||
#-------------------------------------------
|
||||
rest_command:
|
||||
new_version_github_issue:
|
||||
url: https://api.github.com/repos/ccostan/Home-AssistantConfig/issues
|
||||
method: POST
|
||||
headers:
|
||||
Authorization: !secret github_token
|
||||
payload: '{"title":"Home-Assistant {{ version }} available","body":"Home-Assistant {{ version }} is now available /n https://www.home-assistant.io/latest-release-notes/ "}'
|
||||
#-------------------------------------------
|
||||
|
||||
automation:
|
||||
|
||||
- alias: "Update Available Notification"
|
||||
mode: restart
|
||||
id: 2f89ba6d-0db5-4a4a-a4df-56b8e15bb74f
|
||||
|
||||
trigger:
|
||||
- platform: state
|
||||
entity_id: binary_sensor.updater
|
||||
to: 'on'
|
||||
|
||||
action:
|
||||
- service: script.notify_engine
|
||||
data:
|
||||
title: 'Home Assistant {{ states.binary_sensor.updater.attributes.newest_version }} '
|
||||
value1: "Home Assistant {{ states.binary_sensor.updater.attributes.newest_version }} is now available."
|
||||
who: 'carlo'
|
||||
group: 'information'
|
||||
|
||||
- service: rest_command.new_version_github_issue
|
||||
data_template:
|
||||
version: "{{ states.binary_sensor.updater.attributes.newest_version }} "
|
||||
|
||||
|
@@ -14,13 +14,13 @@ automation:
|
||||
id: 56a32121-5725-4510-a1fa-10f69a5c82ef
|
||||
trigger:
|
||||
- platform: state
|
||||
entity_id: binary_sensor.grid_status
|
||||
entity_id: binary_sensor.powerwall_grid_status
|
||||
|
||||
condition:
|
||||
- condition: template
|
||||
# Check that both current and previous states are not 'unavailable', 'unknown', or 'null'.
|
||||
value_template: >-
|
||||
{{ states('binary_sensor.grid_status') not in ['unavailable', 'unknown', 'null'] and
|
||||
{{ states('binary_sensor.powerwall_grid_status') not in ['unavailable', 'unknown', 'null'] and
|
||||
trigger.from_state.state not in ['unavailable', 'unknown', 'null'] }}
|
||||
|
||||
action:
|
||||
@@ -37,7 +37,7 @@ automation:
|
||||
id: 37288a96-5f49-46c2-85c8-7e8794d23612
|
||||
trigger:
|
||||
- platform: state
|
||||
entity_id: binary_sensor.grid_status
|
||||
entity_id: binary_sensor.powerwall_grid_status
|
||||
to: 'False'
|
||||
|
||||
action:
|
||||
@@ -74,20 +74,41 @@ automation:
|
||||
data:
|
||||
value1: "Automatic light recycling has been completed. Any abnormalities will have to be addressed in the Hue App most likely. "
|
||||
|
||||
- alias: Powerwall Low Charge Monitoring with Grid Status
|
||||
id: fda6116b-b2a5-4198-a1ce-4cf4bb3254b2
|
||||
mode: single
|
||||
trigger:
|
||||
- platform: numeric_state
|
||||
entity_id: sensor.powerwall_charge
|
||||
below: 60
|
||||
for:
|
||||
hours: 24
|
||||
condition:
|
||||
- condition: state
|
||||
entity_id: binary_sensor.powerwall_grid_status
|
||||
state: 'on'
|
||||
action:
|
||||
- service: script.notify_engine
|
||||
data:
|
||||
title: "Powerwall Low Charge Alert - Current Charge: {{ states('sensor.powerwall_charge') }}"
|
||||
value1: "The Powerwall has been below 50% charge for more than 24 hours while the grid is online. This may indicate an issue."
|
||||
who: 'parents'
|
||||
group: 'information'
|
||||
|
||||
# https://github.com/CCOSTAN/Home-AssistantConfig/issues/547
|
||||
- alias: Turn off the Nest Thermostats during a Power Outage
|
||||
id: 022bd9da-ab7c-4c1b-9e95-2ff4ffe5f9cc
|
||||
|
||||
trigger:
|
||||
- platform: state
|
||||
entity_id: binary_sensor.grid_status
|
||||
entity_id: binary_sensor.powerwall_grid_status
|
||||
to: 'False'
|
||||
for:
|
||||
minutes: 6
|
||||
|
||||
condition:
|
||||
- condition: template
|
||||
value_template: "{{ states('binary_sensor.grid_status') == 'off' }}"
|
||||
value_template: "{{ states('binary_sensor.powerwall_grid_status') == 'off' }}"
|
||||
|
||||
action:
|
||||
- service: climate.turn_off
|
||||
@@ -108,7 +129,7 @@ automation:
|
||||
|
||||
trigger:
|
||||
- platform: state
|
||||
entity_id: binary_sensor.grid_status
|
||||
entity_id: binary_sensor.powerwall_grid_status
|
||||
from: 'False'
|
||||
to: 'True'
|
||||
for:
|
||||
@@ -116,7 +137,7 @@ automation:
|
||||
|
||||
condition:
|
||||
- condition: template
|
||||
value_template: "{{ states('binary_sensor.grid_status') == 'on' }}"
|
||||
value_template: "{{ states('binary_sensor.powerwall_grid_status') == 'on' }}"
|
||||
- condition: or
|
||||
conditions:
|
||||
- condition: state
|
||||
|
@@ -33,7 +33,7 @@ automation:
|
||||
data:
|
||||
command: find_remote
|
||||
|
||||
- service: notify.mobile_ios_family
|
||||
- service: notify.ios_family
|
||||
data:
|
||||
title: Living Room Remote Finder
|
||||
message: Have you found the Remote?
|
||||
|
@@ -54,8 +54,8 @@ automation:
|
||||
- service: tts.cloud_say
|
||||
entity_id:
|
||||
- media_player.livingroomCC
|
||||
- media_player.entry_alarm_panel
|
||||
- media_player.bedroom_alarm_panel
|
||||
# - media_player.entry_alarm_panel
|
||||
# - media_player.bedroom_alarm_panel
|
||||
data:
|
||||
options:
|
||||
voice: JennyNeural
|
||||
|
@@ -45,8 +45,8 @@ automation:
|
||||
- service: media_player.play_media
|
||||
entity_id:
|
||||
- media_player.livingroomCC
|
||||
- media_player.entry_alarm_panel
|
||||
- media_player.bedroom_alarm_panel
|
||||
# - media_player.entry_alarm_panel
|
||||
# - media_player.bedroom_alarm_panel
|
||||
data:
|
||||
media_content_id: >
|
||||
"https://raw.githubusercontent.com/CCOSTAN/Home-AssistantConfig/master/config/sounds/speechcons/self_destruct.mp3"
|
||||
@@ -55,8 +55,8 @@ automation:
|
||||
entity_id: all
|
||||
data:
|
||||
flash: long
|
||||
- service: switch.turn_off
|
||||
entity_id: all
|
||||
# - service: switch.turn_off
|
||||
# entity_id: all
|
||||
|
||||
- service: light.turn_off
|
||||
entity_id: all
|
||||
|
Reference in New Issue
Block a user