A node on one of my flows outputs an array containing entity_id’s for Sono’s speakers active on my network. THis array is then passed to a function node where I wish to convert it to a string. I want to convert the array to a string. I’ve been working on this for some time without success. The array looks like this;
I looked at the join node but was unsure how to configure it. I’m building my skills and would like to know what the approach would be. Would you mind sharing?
yes, you can use a change node to make msg.sonos_speaker_list_entity_id => msg.payload.
Then split node to make each sonos a new message, then join them.
But that is too much of a hassle. I was expecting just the join node to be able to join arrays also and not just messages.