Function node for getting mqtt_in nodename

I believe any extra overheads are trivial. I much prefer to have multiple mqtt nodes rather than additional logic in the flow routing the messages.

I did not say that you should leave it in the topic, I asked whether you needed to move it.

You can get it from the topic just the same as from a payload member, using, for example, in a function node
const room = msg.topic.split("/")[3]

Thanks @jbudd. After some reading and testing I think I understand your approach. With an injectnode that has a timer for example, I could query each Tasmota device to recieve the telemetry data but the automatic tele works fine as well for my situation. I've set the Teleperiod to 60 in Tasmota giving me data every minute. However that would still involve having to put the room name in every injectnode then. Instead of course I could add some logic and an array of rooms to route messages but at the moment that seems more complex than just using the tele and msg.topic. So, one connection is indeed tidier but I think I'll go with @Colin's approach here, for the pratical reasons.

Apologies, I misread that then.

Thank you, that could work very well for me. I was tinkering with a node-contrib option but this is much cleaner :slight_smile: If I have time today I will try that out and post my results here.

Update 30-10-2024 10:55: I have what I wanted now, thank you very much @jbudd and @Colin :slight_smile:


On the left I've subscribed with a wildcard, extract the room name with const room = msg.topic.split("/")[3] and then route the different topics with the switch node. BTW: Obviously this flow is just for testing. The function and switch nodes here will be part of my subflow.

The switch node uses regex matching:

With this configuration I can have multiple dashboards from one connection and only one subscription for that connection. Yeah! :slight_smile: (still one connection per room though)

1 Like