39 lines
1.4 KiB
YAML
39 lines
1.4 KiB
YAML
# packages/adaptive_lighting_simple_template.yaml
|
|
#
|
|
# Adaptive Lighting Mode System - Simple Template
|
|
#
|
|
# For rooms that only need basic Adaptive Lighting without mode switching.
|
|
# Example: Bathrooms, closets, hallways
|
|
#
|
|
# CUSTOMIZATION INSTRUCTIONS:
|
|
# 1. Copy and rename for your room
|
|
# 2. Replace "simple_room" with your room name
|
|
# 3. Update entity IDs
|
|
# 4. This template has NO mode cycling (Adaptive only)
|
|
#
|
|
# For button actions like brightness boost, use the inovelli_button_actions blueprint
|
|
|
|
# =============================================================================
|
|
# CONFIGURATION
|
|
# =============================================================================
|
|
# No input_select needed - always in Adaptive mode
|
|
|
|
# =============================================================================
|
|
# AUTOMATIONS
|
|
# =============================================================================
|
|
|
|
automation:
|
|
# ---------------------------------------------------------------------------
|
|
# Ensure AL is Always Active
|
|
# ---------------------------------------------------------------------------
|
|
- id: simple_room_ensure_adaptive_lighting
|
|
alias: "Simple Room: Ensure Adaptive Lighting Active"
|
|
trigger:
|
|
- platform: homeassistant
|
|
event: start
|
|
action:
|
|
- service: adaptive_lighting.set_manual_control
|
|
data:
|
|
entity_id: switch.adaptive_lighting_simple_room # UPDATE THIS
|
|
manual_control: false
|