Servo Motor Control – Arduino For Beginners

In the below link …the delay was given to control servo motor ……why should we give delay???is there any need…

ingenstech.com/21-servo-moto … beginners/

Since in the below link the servo motor speed was controlled…what is the minimum speed value of servo motor???

ingenstech.com/21-servo-moto … beginners/

The delay in only needed because they want to control the speed of the servo motor. Normally, the Servo.write() function will make a servo move to that position as quick as it can. If you want to limit the speed, you need to use the Servo.write() function to make the servo move one step at a time and use delay to force a wait time between the steps.

Hope this helps,

@Raghuvir_G, there isn’t really a minimum speed: you can just increase the value of the delay to make it slower between steps and that will slow the speed.