This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| blueprint: | |
| name: IKEA BILRESA - Final Manual Speed | |
| description: "Exact replica of manual automation speed. Cures the 'Missing input' error." | |
| domain: automation | |
| input: | |
| bilresa_device: | |
| name: BILRESA Remote | |
| selector: | |
| device: {} | |
| scene1_light: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| blueprint: | |
| name: Camera Motion Snapshot Notification (Simple / Fixed Tag) | |
| description: > | |
| On motion: take a snapshot and send a mobile app notification that | |
| uses a fixed Android tag (per camera) and a channel/group so Android | |
| recognizes updates as the same notification thread. No custom snooze logic. | |
| domain: automation | |
| input: | |
| motion_entity: | |
| name: Motion binary sensor |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| blueprint: | |
| name: Fully Kiosk – Warm Background Reload (v2) | |
| description: > | |
| Keeps Fully Kiosk preloaded on Fire TV by refreshing the last URL at a set interval | |
| while Fully is not the foreground app. Uses a per-minute trigger + modulo check | |
| (because time_pattern doesn't accept templates). | |
| domain: automation | |
| input: | |
| fire_tv_entity: | |
| name: Fire TV Media Player |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| blueprint: | |
| name: Fully Kiosk – Focus camera view (no reload unless needed) | |
| description: > | |
| Bring Fully Kiosk to the foreground on Fire TV and only load a Lovelace | |
| camera view if it's different from the last one shown (tracked via a text helper). | |
| Includes conditional wake so it only sends KEYCODE_WAKEUP if the Fire TV looks asleep. | |
| domain: script | |
| input: | |
| fire_tv_player: | |
| name: Fire TV media_player |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| alias: eMotion Max - Room Modes by Zone | |
| description: >- | |
| Turns on Studio mode when entering Studio zone and Chillout mode when entering | |
| Desk zone (with 20 second delay to prevent quick switches back to studio). | |
| triggers: | |
| - entity_id: | |
| - binary_sensor.lnlinkha_e04b41016e260000000000009cac0000_4 | |
| to: "on" | |
| id: studio_zone_entered | |
| trigger: state |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Instruction For How To Control PC Or *ANY* Mac With Alexa Or Hey Siri: https://youtu.be/7PwrdtZ-yT0 | |
| Step 1: Install the latest Python if you don't already have it, in Windows you'll also need to tick add Python.exe to path during installation | |
| Step 2: Create directories for your Automation files to live in (MAC: MacintoshHD/Users/YOURUSERNAME/HomeAssistantAppLauncher / PC: C://Users/YOURUSERNAME/HomeAssistantAppLauncher) | |
| Step 3: Download my Python file from https://drive.google.com/drive/folders/1TQZDuA4PY08c4pdXZbkcmTau8CEV3abw?usp=sharing and drag the py file ... MAC: mac_app_launcher.py PC: win_app_launcher.py to the folder you created | |
| Step 4: Open up Terminal/Command prompt and type the following and press enter to get to the right folder MAC: cd ~/HomeAssistantAppLauncher PC: cd C:\Users\YOURUSERNAME\HomeAssistantAppLauncher | |
| In Terminal run the script we downloaded by typing the following and pressing Enter MAC: python3 mac_app_launcher.py PC: python win_app_launcher.py |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Run the Python script in the background, redirecting output to log files | |
| /usr/bin/python3 ~/HomeAssistantAppLauncher/mac_app_launcher.py > ~/HomeAssistantAppLauncher/app_launcher_stdout.log 2> ~/HomeAssistantAppLauncher/app_launcher_stderr.log & |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| cat << 'EOF' > ~/HomeAssistantAppLauncher/start_app_launcher.sh | |
| #!/bin/bash | |
| # Run the Python script in the background, redirecting output to log files | |
| /usr/bin/python3 ~/HomeAssistantAppLauncher/mac_app_launcher.py > ~/HomeAssistantAppLauncher/app_launcher_stdout.log 2> ~/HomeAssistantAppLauncher/app_launcher_stderr.log & | |
| EOF |