#828 - Solving REAL problems in my house.

This commit is contained in:
ccostan 2020-07-28 20:38:39 -04:00
parent eb0a9d8f75
commit 437b0cee70
4 changed files with 85 additions and 1 deletions

View File

@ -35,7 +35,7 @@ automation:
call_garage_check: 1
- delay:
minutes: 30
minutes: 20
- service: script.tweet_engine_image
data_template:
@ -58,3 +58,6 @@ automation:
"/config/www/custom_ui/floorplan/images/branding/lightning_2.png",
"/config/www/custom_ui/floorplan/images/branding/lightning_3.png"
] | random }}
- delay:
minutes: 20

81
config/packages/roku.yaml Executable file
View File

@ -0,0 +1,81 @@
#-------------------------------------------
# @CCOSTAN
# Original Repo : https://github.com/CCOSTAN/Home-AssistantConfig
# NRoku Related Functions - https://amzn.to/2Ctp8cr
#-------------------------------------------
input_boolean:
living_room_remote_finder:
name: "Living Room Remote Finder"
initial: off
icon: mdi:remote
ios:
push:
categories:
- name: RemoteLR
identifier: 'RemoteLR'
actions:
- identifier: 'LR_REMOTE_FOUND'
title: 'Remote Found'
activationMode: 'background'
authenticationRequired: no
destructive: yes
- identifier: 'LR_REMOTE_NOT_FOUND'
title: 'Not Yet'
activationMode: 'background'
authenticationRequired: no
destructive: yes
##############################################################################
### Automations
##############################################################################
automation:
- alias: 'Find Roku Remote'
id: 2346efcd-e8a8-ROKU-b5b6-43e54a72a95f
mode: queued
trigger:
- platform: state
entity_id: input_boolean.living_room_remote_finder
to: 'on'
- platform: event
event_type: ios.notification_action_fired
event_data:
actionName: LR_REMOTE_NOT_FOUND
action:
- service: remote.send_command
entity_id: remote.living_room_ultra
data:
command: find_remote
- service: script.notify_engine
data_template:
title: 'Living Room Remote'
value1: 'Find Remote'
ios_category: "RemoteLR"
who: "family"
apns_id: 'RemoteLR'
- service: input_boolean.turn_off
entity_id: input_boolean.living_room_remote_finder
- alias: "Living Room Remote Found"
id: 1f295bb8-ROKU-4b22-8f75-9fe079b295a8
trigger:
platform: event
event_type: ios.notification_action_fired
event_data:
actionName: LR_REMOTE_FOUND
action:
- service: input_boolean.turn_off
entity_id: input_boolean.living_room_remote_finder
- service: script.notify_engine
data_template:
title: 'Living Room Remote'
value1: 'Remote has been found.'
who: "family"
apns_id: 'RemoteLR'

Binary file not shown.

Before

Width:  |  Height:  |  Size: 36 KiB

After

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 191 KiB

After

Width:  |  Height:  |  Size: 168 KiB