I have a project in mind. the simple break down is
have a touchscreen connected to an arduino (at some point maybe a webpage or something too for other devices on the network) the touch screen will have a colour wheel or chart or some such to choose a colour. also possibly choose a node or other device. the colour is broken down into the pwm signals and then sent over nrf24l01 to another arduino which has a couple of mosfets and then lights an RGB strip and a white strip to get a broader array of colours.
just seeing if anyone has done this before and where the guide is for it
You can start by writing the sender and the receiver,
in the sender, you can print a dump of the packet that should be sent,
in the receiver, you can test the functionality by feeding in data or commands via serial.
Adding the NRF functionality to that setup is very easy and straightforward,
given that both sketches are non-blocking and delay free,
and the commands are less than 32 bytes long
(single packet interfaces are so much simpler...).
If you want to see examples for simple communications, Robin2's tutorial has
examples for most of the possible operation modes.
There are some RC applications to control devices also.
Do you mean that you are sending the frequency and duty cycle information or are you intending to generate pulses and send (some representation of) those.?