I added libraries nRF24LO1 and RF24-Master both from Zip Add Library
They went into an Aduino library folder in users.
The libraries work okay, however during compile before loading into arduino I get mystifying notices saying found multiple instances of nRF24LO1 when only 1 in library, and instances of RF24.
If I remove the libraries and // the #include lines then I get warning statements the files cannot be found.
I tried moving the two libraries to my C:/Program Files/Arduino/libraries and still get the warnings.
Appreciate to know why. Problem does not stop sketch working. Thanks
Those aren't errors. It's just some helpful information the Arduino IDE provides you. The reason is that when there are multiple library files with the same name the program tries to pick the right one but it might get it wrong so it's good to have a look at that information. In this case it appears that the correct nRF24L01.h file to use would have been the copy included with the RF24-Master library but it used the one from the nRF24L01 library instead. This sort of thing can cause confusing bugs some times and before the multiple libraries notification was added it was more difficult to spot what happened. It's likely that including RF24.h before nRF24L01.h causes the IDE to choose the correct one now.