Pulse frequency and Servos

When you give a command such as myservo.write(90) the Arduino continuously produces the appropriate pulses until you give another command for the same servo. This all happens invisibly in the background.

In general you only need to give another servo.write() command when you want to move the servo arm to a different position.But it won't do any harm to repeatedly call servo.write() with the same position.

...R