What pipe does RF24::write() write to?

I am using UNOs and TMRh20 RF24.h with nRF24L01+.

write() does not take a parameter to define the pipe to which it writes which leaves the question, "What pipe does RF24::write() write to?"

Not even the Nordic Product Specification has helped me here. Where is this specified?

You unfortunately need to look in the .h and .c or .cpp files to see what the code does.

The one shown in this statement in setup().

  radio.openWritingPipe(pipes[1]);        // Or whatever pipe value you want to use

Arctic_Eddie:
The one shown in this statement in setup().

  radio.openWritingPipe(pipes[1]);        // Or whatever pipe value you want to use

Yes. Of course. Silly me. Thanks