I'm trying to get one transceiver to tell the other transceiver to make some servos move on an Arduino board. I managed to make the transceivers work using this tutorial: Getting Started with nRF24L01+ on Arduino | maniacbug and the RF24 library. However, I have no idea how I would make servos move using the transceivers. Does anybody know? Thanks in advance.
However, I have no idea how I would make servos move using the transceivers. Does anybody know?
You can't. A radio can't make a servo move. An Arduino can use a radio to transmit data. An Arduino can use a radio to receive data. An Arduino can store and parse the data, and discover that the data means to move a servo, and it can move the servo.
The key is to send the correct data.
The below discussion has a project similar to yours.