You can use some template code to extract all the device information that is available in HA and compare it to the ZUI control panel table. You can style the information however you like. Here’s an example that creates a stylized Markdown table:
{%- set ns = namespace(nodes=[]) %}
{%- for dev_id in integration_entities('zwave_js') | map('device_id') | unique %}
{%- set node_id = (device_attr(dev_id, 'identifiers') | first | last).split('-')[1] %}
{%- set ns.nodes = ns.nodes + [(node_id | int, dev_id)] %}
{%- endfor %}
ID | Manufacturer | Product / ZUI Custom Name | Product code | HA Custom Name | Location / Area | FW
---:|:-------------|:--------------------------|:-------------|:---------------|:----------------|---:
{%- for node_id, dev_id in ns.nodes | sort(attribute='0') %}
{{ ["**%03d**" | format(node_id),
device_attr(dev_id, 'manufacturer'),
device_attr(dev_id, 'name'),
device_attr(dev_id, 'model'),
device_attr(dev_id, 'name_by_user') or "",
area_name(dev_id) or "",
device_attr(dev_id, 'sw_version')] | join("|") }}
{%- endfor %}
The Markdown card styling is not great. To get that view I had to create a new tab and configure the view type as “Panel (1 card)”, otherwise the card is too narrow and looks bad. You could also try HTML in Markdown. If it’s a one time thing, just put the template code in the devtools template editor and format the text as desired, put it in CSV or Tab-delimited format, etc., etc.
This helped me a lot with an issue I was/am having, is there anyway to grab the device DSK? or PIN Code… I have 20 identical devices, and can’t figure which is which