WTH there’s no device tracker on Adguardhome integration

Adguardhome integration is minimalistic.
WTH there’s no device tracker available?

which would do what exactly?

Adguardhome has some DHCP capabilities and client management capabilities.
We could use that to track connected devices. I’ve seen a similar feature request for Pi-Hole here: Pi-hole DHCP server presence detection

Not sure I understand this request or the one you linked.

Just use WiFi SSID.

1 Like

How would you create device trackers with SSID? Most of the router integration propose to create device tracker for each dhcp client (home when the device is connected). Why wouldn’t it be possible whith Adguardhome when using its dhcp service?

There always is the

ping

integration

1 Like
- platform: template
  sensors:
    me_phone_home:
      value_template: >-
        {% if states('sensor.me_phone_wifi_connection') in "ssid1,ssid2" %}
          Home
        {% else %}
          Away
        {% endif %}
      friendly_name: 'Me Home-Wifi'

    her_phone_home:
      value_template: >-
        {% if states('sensor.her_phone_wifi_connection') in "ssid1,ssid2" %}
          Home
        {% else %}
          Away
        {% endif %}
      friendly_name: 'Her Home-Wifi'