Show a list in the front-end containing all known devices

I want to show a list containing of all known devices in my network.

Under “States” i found the group “group.all_devices” that contains all known devices (at home, I guess), but when i place that group under a view, the group isn’t visible

group:
  device_tracker_view:
    name: Devices on the network
    view: yes
    icon: mdi:wifi
    entities:
    - group.all_devices

Question 1: How can I list all devices currently at home?

Question 2: How can I list all known devices?

A piece (or two) of advice would really be appreciated.

The “all_devices” group is hidden by default, so you need to customize it to enable. See here for more conversation. In your customization section you can add the following:

homeassistant:
  name: Home
  # etc

  customize:
    group.all_devices:
      hidden: false
1 Like

Thanks alot, @luma , That worked just fine!

1 Like