Skip to content

Instantly share code, notes, and snippets.

@seamus65
seamus65 / doorbell_notify_alexa.yaml
Last active May 7, 2024 20:14
blueprint tutorial
blueprint:
name: Doorbell - Notify Alexa
description: "Make an announcement over Amazon Echo devices when the doorbell is pushed."
domain: automation
input:
doorbell:
name: Doorbell
description: This is the doorbell binary sensor
selector:
@seamus65
seamus65 / zha_symfonisk_remote_lights.yaml
Last active March 29, 2023 19:28
blueprint tutorial
blueprint:
name: ZHA - IKEA Symfonisk sound controller for lights
description: 'Control lights with an IKEA Symfonisk sound controller (the spinny ones).
You can set functions for single press, double press and triple press. This allows you to assign,
e.g., a scene or anything else.
Rotating left/right will change the brightness smoothly of the selected light.'
domain: automation
@seamus65
seamus65 / wallpanel_battery_management.yaml
Last active January 4, 2022 20:52
blueprint tutorial
blueprint:
name: Wallpanel Battery Management
description: 'Control the charger for a permanently mounted tablet control panel.'
domain: automation
input:
battery:
name: Battery
description: This is the battery sensor for the device.
selector:
blueprint:
name: Doorbell - Notify Alexa and or Google and send camera snapshot to app
description: 'Make an announcement over Alexa and/or Google devices when the doorbell is pushed and send a camera snapshot to your app.'
domain: automation
input:
doorbell:
name: Doorbell
description: This is the doorbell binary sensor
selector:
blueprint:
name: Doorbell - Notify Google and send camera snapshot to app
description: 'Make an announcement over Google devices when the doorbell is pushed and send a camera snapshot to your app.'
domain: automation
input:
doorbell:
name: Doorbell
description: This is the doorbell binary sensor
selector:
blueprint:
name: Doorbell - Notify Alexa and send camera snapshot to app
description: 'Make an announcement over Amazon Echo devices when the doorbell is pushed and send a camera snapshot to your app.'
domain: automation
input:
doorbell:
name: Doorbell
description: This is the doorbell binary sensor
selector:
@seamus65
seamus65 / zha_symfonisk_remote_media.yaml
Last active March 2, 2023 14:04
blueprint tutorial
blueprint:
name: ZHA - IKEA Symfonisk sound controller for media
description: 'Control media with an IKEA Symfonisk sound controller (the spinny ones).
Single press will toggle Play/Pause on your selected media player.
You can set functions for double press and triple press.
Rotating left/right will change the volume smoothly of the selected media player, if that function is possible.'
@seamus65
seamus65 / ZHA - Mijia Wireless Switch.yaml
Last active January 16, 2023 10:08
blueprint tutorial
blueprint:
name: ZHA - Mijia Wireless Switch
description: 'Perform actions with the Mijia Wireless Switch.
You can set functions for single press, double press, triple press, quadruple press and furious (5 or more presses). This allows you to assign,
e.g., a scene or anything else.'
domain: automation
input:
remote:
blueprint:
name: ZHA - Sonoff SNZB-01
description: 'Perform actions with the Sonoff SNZB-01 Button.
You can set functions for single press, double press and hold. This allows you to assign,
e.g., a scene or anything else.'
domain: automation
input:
remote:
@seamus65
seamus65 / tltech.vicki.js
Last active August 21, 2022 10:23
Vicki script to open TL Tech Smart Website
// ==VickiScript==
// @name TL Tech Script
// @utterance Tell $invocation tl tech
// ==/VickiScript==
$vs.listen(/^tl tech$/, async (req, res, match) => {
const url = 'https://www.tltechsmart.com';
await browser.tabs.create({ url });
res.say("Welcome to the TL Tech Smart Website").send();