Quick note if you're a) reading multiple ds18b20's with a raspberry pi and b) struggling with flow stalls

I had a quick look at the source code of the contrib node: https://github.com/bpmurray/node-red-contrib-ds18b20-sensor/blob/master/ds18b20-node/ds18b20-node.js

They use synchronous file access to the sensors. This prevents the NodeJS event loop to process other tasks until the operation has finished. Depending on the sensor's resolution, the DS18B20 readings can take over a second per sensor. So the blocking behavior you described is to be expected.

I see you have already found your way to using an ESP8266 and MQTT, that would have been my preferred suggestion as well. :+1:
In fact, that is my setup at home and works like a charm. I have deployed around 8 ESPs here with several sensors (BME280, DS18B20) and door/window switches. :grin: