getting feedback on nrf24l01

You say you want to send a message every millisecond (which, as i said earlier, is much too fast) but then you have delay(1000) in your code which means the maximum rate of sending cannot be more than one per second.

This my not work very well

      GazE = map(analogRead(0),23,200,0,255);
      SagSolE = map(analogRead(2),37,260,70,120);
      YukariAsagiE = map(analogRead(1),35,230,65,125);

because you are reading from different input pins. It would be better like this so that it discards the first reading after every change of pin

     GazE = analogRead(0);
      GazE = map(analogRead(0),23,200,0,255);

      SagSoIE = analogRead(2);
      SagSolE = map(analogRead(2),37,260,70,120);

      YukariAsagiE = analogRead(1);
      YukariAsagiE = map(analogRead(1),35,230,65,125);

...R