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: Heater Presence Automation with Comfort Mode | |
| description: > | |
| Automates heater temperature based on presence detection and comfort mode toggle. | |
| Features: | |
| - Activates comfort mode after presence detected for configurable duration | |
| - Returns to minimal temperature after no presence for configurable duration | |
| - Manual comfort mode toggle via input boolean | |
| - Periodic reset to minimal temperature at configurable intervals | |
| - Separate temperature settings for comfort and minimal modes |
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: Presence-Based Thermostat Temperature Control (Multi-Trigger) | |
| description: > | |
| Automatically adjusts thermostat target temperatures based on presence detection. | |
| To avoid false triggers from passing through, this blueprint requires multiple | |
| occupancy detections within a time window before considering the room occupied. | |
| When presence is confirmed (threshold reached), sets thermostats to comfort temperature. | |
| Once in comfort mode, any single trigger resets the no-presence timeout. |
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: Thermostat Control on Window/Door Open | |
| description: > | |
| Automatically turns off selected thermostats when any monitored door/window sensor opens. | |
| Restores previous thermostat states when all sensors close. | |
| Prevents thermostats from being turned on while any sensor is open. | |
| domain: automation | |
| input: | |
| door_window_sensors: | |
| name: Door/Window Sensors |
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: Sync Thermostats | |
| description: > | |
| Synchronizes target temperature and HVAC mode across multiple thermostats. | |
| When any thermostat in the group changes, all others will be updated to match. | |
| domain: automation | |
| input: | |
| thermostats: | |
| name: Thermostats to Sync | |
| description: Select all thermostats that should stay synchronized |
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 Illuminance Threshold | |
| description: > | |
| Turn on a specific light when motion is detected and illuminance is below a threshold. | |
| Only activates if no lights in the room are already on. | |
| Turns off all lights after no motion is detected for a configurable time, | |
| regardless of how the lights were turned on. | |
| domain: automation | |
| input: | |
| motion_sensor: |