because in this case
if(radio.available()){
radio.read(&boolarr[0], sizeof(boolarr[1]));
if (boolarr[0] == HIGH) {
Serial.println(" Recived This is button 1");
rot = rot + add;
myServo1.write(rot);
radio.stopListening();
}
radio.startListening();
radio.read(&boolarr[1], sizeof(boolarr[1]));
if (boolarr[1] == HIGH){
Serial.println("This is button 2");
rot = rot + add;
myServo2.write(rot);
}
}
}
i tried removing one and the thing worked and i removed the 1st one and kept the second one the thing worked. But when i put both together both move at the same time