# ============================================================================= # Timer Entities Configuration # ============================================================================= # Add to configuration.yaml: timer: !include timer_entities.yaml # Or merge into your existing timer configuration. # # Each voice assistant area gets its own timer entity named by area. # The timer entity is the single source of truth for timer state. # # Naming convention: timer. # - Area IDs should be lowercase with underscores (e.g., kitchen, living_room) # - This matches Home Assistant's preferred_area_id format # # To add a new area, copy one of the examples below and change the key and name. # ============================================================================= # Example: Kitchen area voice assistant kitchen: name: Kitchen Timer icon: mdi:timer-outline restore: true # Example: Bedroom area voice assistant bedroom: name: Bedroom Timer icon: mdi:timer-outline restore: true # Example: Playroom area voice assistant playroom: name: Playroom Timer icon: mdi:timer-outline restore: true # ============================================================================= # Add more areas as needed: # ============================================================================= # living_room: # name: Living Room Timer # icon: mdi:timer-outline # restore: true # # office: # name: Office Timer # icon: mdi:timer-outline # restore: true