fixtSE
FixtSEFixtSE
en Englishes Espanol
Blog
Membership
Shop
Scribe
About
en Englishes Espanol
Blog
Membership
Shop
Scribe
About

Youtube
Instagram
RSS
Github
Membership
Privacy
Fixtβ€’
Updated: Oct 20, 2023β€”2 min read

Level Up your Presence Detection in Home Assistant

Written by: Fixt

If you're subscribed to our Channel
Login with your Google account to get our Smart Tutorial Experience!

Table of contents
Manage People in HAImport BlueprintCreate input_selectHow the new statuses workAutomation Examples

Featured

Related

Tags

Presence-Detection
Home-Assistant
Blueprint
Tutorial

If you like my work, please consider supporting me on Ko-fi!

← Back to the blog

Tags

Presence-Detection
Home-Assistant
Blueprint
Tutorial
← Back to the blog

Featured

Related

Tags

Presence-Detection
Home-Assistant
Blueprint
Tutorial

Manage People in HA
#

Open your Home Assistant instance and show your people.

Import Blueprint
#

  • philhawthorne's Original article here
  • This blueprint will allow you to use an input_select to get 5 presence states:
    • Home
    • Just Left
    • Away
    • Extended Away
    • Just Arrived
  • cliffordw.hansen's Original blueprint:

Create input_select
#

Open your Home Assistant instance and show your helper entities.

config/configuration.yaml

input_select:
  fixt_status_dropdown:
    name: Fixt Status Dropdown
    options:
      - Home
      - Just Arrived
      - Just Left
      - Away
      - Extended Away
    initial: Home

How the new statuses work
#

Automation Examples
#

config/automations.yaml

alias: Better AutoPlay Playlist
description: ""
trigger:
  - platform: state
    entity_id:
      - input_select.fixt_status_dropdow
    from: Away
    to: Just Arrived
condition: []
action:
  - service: media_player.select_source
    data:
      source: kitchen
    target:
      entity_id: media_player.ytube_music_player
  - service: media_player.play_media
    data:
      media_content_id: RDCLAK5uy_mplKe9BIYCO3ZuNWSHZr48bm9DUDzbWnE
      media_content_type: playlist
    target:

entity_id: media_player.ytube_music_player
mode: single
YouTube Subscriber Access
BLUEPRINT

YouTube Subscriber Benefit

This blueprint is free for all our YouTube subscribers!

Log in with your Google account to access it on our website.

Subscribe to our channel

πŸ’‘ Validation Tip

If you have trouble with this feature, make sure your subscription list is public in your YouTube settings, under "Privacy".