as a follow-up to #1284152665357418531 message just posting this template that creates a Markdown card with the Nodes name_by_user : nodeID mapping, which I needed to debug some Z-wave loggings. Ha doesnt allow us to easily find the NodeId other than checking each and every individual Device in the Z-wave integrations panel. With this we can now look them up. Thanks to @slender musk and @hexed ravine who helped me out also in the community at https://community.home-assistant.io/t/expose-nodeid-on-the-zwave-devices/770688/7?u=mariusthvdb
nice! if I try this (taking out the area because I want them all, and taking out the entity_dict because it does not seem to do anything in the output?): {% set ns = namespace(device_dict=dict()) %} {% for entity in integration_entities('zwave_js') %} {% set name = entity | device_id | device_attr('name') %} {% set id1, id2 = e...