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: Motion-Activated Light with Optional Modes and Light Sensor | |
description: > | |
Turns on lights with optional mode-based day/night logic. | |
Defensive template usage avoids undefined input errors. | |
Wait times are in minutes. Modes are CSV strings. Supports multiple lights and optional max-on-time. | |
domain: automation | |
author: Chris Benard (assisted by ChatGPT) | |
input: | |
motion_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: Bathroom Fan - Auto Control by Humidity | |
description: > | |
Automatically turns on a bathroom fan when humidity spikes quickly, and turns it off | |
after humidity stabilizes for a set time. Manual overrides are respected. Optionally | |
turns off the fan after it's been on for a maximum time if the humidity is also flat. | |
domain: automation | |
author: Chris Benard (assisted by ChatGPT) | |
input: |
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
# Requirements: | |
# Requires jq, base64, and unzip to be installed | |
MQTT_HOST=mosquitto | |
MQTT_USER=USERNAME_HERE | |
MQTT_PASSWORD=PASSWORD_HERE | |
MQTT_NETWORK=homeassistant_mqtt | |
MQTT_JSON=mqtt_output_zigbee2mqtt.json | |
MQTT_ZIP=zigbee2mqtt_backup.zip |