Tplink Deco Clients

Hello everyone,

I have a question about tplink Deco.

Is there any way I can display the clients of each deco in a mesh or how can I know when a certain device is logging into a certain deco?

Thank you for your response

You will need this custom integration:

Hello everyone,

thanks for your response.

I already have this integration, but I can’t find anywhere how to find the clients per deco?

It is displayed on the entity atribute Deco Device:

I also used another two custom components to create this view:

How to

You’ll need these two components:

  1. GitHub - thomasloven/lovelace-auto-entities: 🔹Automatically populate the entities-list of lovelace cards

  2. GitHub - custom-cards/flex-table-card: Highly Flexible Lovelace Card - arbitrary contents/columns/rows, regex matched, perfect to show appdaemon created content and anything breaking out of the entity_id + attributes concept
    Then paste the code below in a lovelace card:

type: custom:auto-entities
filter:
  include:
    - integration: tplink_deco
  exclude:
    - state: not_home
card:
  type: custom:flex-table-card
  title: Connected Devices - TP-Link Deco
  clickable: true
  strict: true
  columns:
    - data: friendly_name
      name: Friendly Name
    - data: state
      name: State
    - data: connection_type
      name: Connection
      modify: if(x.length == 0){""}else{x}
    - data: deco_device
      name: Deco
      modify: if(x.length == 0){""}else{x}
    - data: ip
      name: IP
  sort_by:
    - ip+
sort:
  method: friendly_name
show_empty: false

1 Like

Thank you.

Go try it like this.

If you look for your Deco under Settings > Devices & Services > Devices, you can find the connected devices to that Deco.

If you want to use it in automations, as mentioned, the source is not the Deco, but the device connecting to the Deco.