Struggling with Modbus RTU timing over TCP

I'm trying to integrate a IoT-SS101 with my Node-RED setup. Does anyone have the correct JSON flow for handling the polling interval? Here is the device manual: https://valtoris.com/wp-content/uploads/2025/11/1CH-RS232-485-422-ETH-V-User-Manual-EN.pdf

Assuming i have the right product page, what you have is a "Serial server, Modbus Gateway, MQTT Gateway" so in theory, you could connect the serial server to 1) the end device (using modbus) and 2) an MQTT broker. That way, you get access to the end device via simple MQTT nodes (core node built in to Node-RED)

Personally, I would have just setup a local RPi (or industrial RPi) and run Node-RED on the edge (near the end device). That is far more flexible.

Polling registers from a Modbus device depends entirely on what you need, how many registers you are reading/writing and how frequently you need them. You first task should be to get a single successful register read/write.