This file contains 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
<?xml version="1.0"?> | |
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> | |
<xsl:output indent="no" omit-xml-declaration="yes"/> | |
<xsl:strip-space elements="*"/> | |
<xsl:template match="@*|node()"> | |
<xsl:copy> | |
<xsl:apply-templates select="@*|node()"/> | |
</xsl:copy> | |
</xsl:template> | |
<xsl:template match="text()"> |
This file contains 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
import { AfterViewInit, Directive, ElementRef, Inject } from '@angular/core'; | |
import { AbstractSubscriber } from '../../core/abstract-subscriber'; | |
import { filter, startWith, takeUntil } from 'rxjs/operators'; | |
import { NavigationEnd, Router } from '@angular/router'; | |
import { APP_BASE_HREF, Location } from '@angular/common'; | |
function isSafariBrowser() { | |
return navigator.vendor && navigator.vendor.indexOf('Apple') > -1 && | |
navigator.userAgent && | |
navigator.userAgent.indexOf('CriOS') === -1 && |
This file contains 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: Motion Aware Lights Toggling | |
description: > | |
Turn a light on and off based on detected motion but only if certain criteria a matched provided by a Illuminance-Sensor or a Binary-Sensor. | |
Also allows to disable motion aware lights. This might be useful for example if a person is in the bed or a movie is playing. | |
domain: automation | |
source_url: https://gist.github.com/pavax/ce9559c428b9a3c369ce79ef215ef1e2 | |
input: | |
motion_sensor: | |
name: Motion Sensor |
This file contains 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: Nagging Alerting Notification Automation | |
description: > | |
Trigger an alert based on the state of a given sensor. | |
The Alert is send to a mobile app device and repeats as long as the sensor is in the given state. | |
An additonal action can be specified. This might be useful to tts the message. | |
domain: automation | |
source_url: https://gist.github.com/pavax/08705e383bdd3b58ea7b75a1f01c7e54 | |
input: | |
sensor_entity: |
This file contains 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: Scheduled Timeslot | |
description: > | |
Timeslot Scheduler (e.g for vacuums) that allows to define a action to be executed within the specified timeslot and its condition. | |
domain: automation | |
input: | |
monday_enabled: | |
name: Monday | |
default: false | |
selector: |
This file contains 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: '[vacuum] room dispatcher' | |
sequence: | |
- variables: | |
room_name: >- | |
{{room_name|lower|replace('ä','ae')|replace('ü','ue')|replace('ö','oe') | |
}} | |
room_last_trigger: 'input_datetime.vacuum_{{room_name}}_last_schedule_triggered' | |
room_zone: '{{ state_attr(room_last_trigger,''zone'') }}' | |
- condition: template | |
value_template: '{{ room_zone != null }}' |
This file contains 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 on/off-switch and 5-Button Toggle | |
description: Custom Blueprint for Ikea Remote Controls (On/Off, TRADFRI remote control) x | |
domain: automation | |
input: | |
remote: | |
name: Remote | |
description: IKEA remote to use | |
selector: | |
entity: |
This file contains 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: "[Z2M] Generic Ikea Remote Control" | |
description: "Blueprint for Ikea Remote Controls (On/Off, 5-Button, Shortuct)" | |
domain: automation | |
source_url: https://community.home-assistant.io/t/zigbee2mqtt-ikea-on-off-switch-general-use/263895 | |
input: | |
remote: | |
name: Remote | |
description: IKEA remote to use (e.g sensor.kitchen_remote_action) | |
selector: |
This file contains 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: Turn off entity after a while | |
description: > | |
Turn off entity after a period of time | |
domain: automation | |
source_url: "https://gist.github.com/pavax/4eb086412c1e455a26da4dc64673b3b9" | |
input: | |
target_entity: | |
name: target_entity | |
description: "The entity to turn off after a while." |
This file contains 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: Window aware Light control | |
description: > | |
Turn off the active lights when a window is opened. | |
As soon as the window is closed, turn them on again. | |
domain: automation | |
source_url: https://gist.github.com/pavax/TBD | |
input: | |
window_sensor_entity: | |
name: Window Sensor Entity |
OlderNewer