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
button: | |
- platform: template | |
name: "${name} Power" | |
on_press: | |
- remote_transmitter.transmit_nec: | |
address: 0xB683 | |
command: 0xB24D | |
command_repeats: 1 | |
- platform: template |
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
acme-v01.api.letsencrypt.org | |
acme-staging.api.letsencrypt.org | |
acme-v02.api.letsencrypt.org | |
acme-staging-v02.api.letsencrypt.org | |
outbound1a.letsencrypt.org | |
outbound1b.letsencrypt.org | |
outbound1c.letsencrypt.org | |
outbound1d.letsencrypt.org | |
outbound1e.letsencrypt.org | |
outbound1f.letsencrypt.org |
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
#!/bin/bash | |
# The gatway to send the natpmp commands | |
natpmp_ip="10.2.0.1" | |
# Path to the lock file | |
lock_file="/tmp/transmission_update.lock" | |
# Path to the Transmission settings.json file | |
settings_file="/etc/transmission-daemon/settings.json" |
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
#!/bin/sh | |
# How to use: | |
# Place this file in /usr/local/etc/rc.d/ | |
# Make the file executable: chmod +x /usr/local/etc/rc.d/udpbroadcastrelay2 | |
# Adjust the command_args to your needs | |
# Add udpbroadcastrelay_enable="YES" to /etc/rc.config | |
# Start using the command: service udpbroadcastrelay start | |
. /etc/rc.subr |
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: Aqara TRV E1 External Temperature Control | |
description: > | |
This automation allows the Aqara TRV E1 Smart Radiator Thermostat to use temperature readings from an external sensor rather than its internal sensor. Whenever the temperature sensor reports a new value, it is sent to the TRV for more accurate climate control. | |
domain: automation | |
source_url: "https://gist.github.com/pavax/8d6ed250765d89cb281d4a1762b8d2e8" | |
input: | |
external_temp_sensor: | |
name: External Temperature 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: Illuminance aware cover control | |
description: > | |
Close cover based on a illuminance sensor. | |
Allow manual control to open the cover again, but reactivate the automatic control again after a defined time. | |
Optional defined state sensors to prevent re-opening again. For Example when a media_player is playing | |
domain: automation | |
source_url: https://gist.github.com/pavax/ed424e1d7bbb1c69b7e33e60d1415b5a | |
input: | |
cover_control: |
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
#/bin/bash | |
if [[ $1 == "turn-on" ]]; then | |
command=$(echo 'on 0.0.0.0' | cec-client -s -d 1) | |
elif [[ $1 == "turn-off" ]]; then | |
command=$(echo 'standby 0.0.0.0' | cec-client -s -d 1) | |
elif [[ $1 == "status" ]]; then | |
#command=$(echo 'pow 0.0.0.0' | cec-client -s -d 1) | |
readarray -t lines < <(echo 'pow 0.0.0.0' | cec-client -s -d 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
<?php | |
/** | |
* HOW-TO INSTALL | |
* - Download and edit the DEFINE-ME variables in this file | |
* - Upload the file to your server (for example into your WordPress installation directory) | |
* - Go to the Amelia Settings Page and click on Integrations. | |
* - Go to the "Webhooks" Tab | |
* | |
* URL: Provide your URL that matches to where you uploaded this php file on your server. |
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: Illuminance aware cover control | |
description: > | |
Close cover based on a illuminance sensor. | |
Allow manual control to open the cover again, but reactivate the automatic control again after a defined time. | |
Optionally define state sensors to prevent re-opening again. For Example when a media_player is playing. | |
domain: automation | |
source_url: https://gist.github.com/pavax/ed424e1d7bbb1c69b7e33e60d1415b5a | |
input: | |
cover_control: |
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/6afcd0eee7c990c456b99dd52680b4b0 | |
input: | |
window_sensor_entity: | |
name: Window Sensor Entity |
NewerOlder