MODBUS - How to read multiple registers (uint32, int32) in a polling

So far I have managed to read single registers, consecutively in one pooling.

I currently need to read values ​​consisting of two registers.

A single reading is successful after reading the first of the registers in the pair as UINT32, but to save transmission on the modbus bus I would like to read many such double registers one after another in one polling.

Is it even possible?.

I imagine it’s possible. How, I’m not sure since I’m using Esphome for modbus and there it’s taken care as default.
Did you try using:
slave_count:

Thank you very much for directing the solution, I completely forgot about

slave_count:

The difference in relation to count: is such a

count:

creates one entity with many values ​​and

slave_count:

creates many entities.