This is a for loop used in an example:
void loop()
{
for(pos = 0; pos < 180; pos += 1) // goes from 0 degrees to 180 degrees
{ // in steps of 1 degree
myservo.write(pos); // tell servo to go to position in variable 'pos'
delay(15);
This is not my code. I tried it and it makes the servo move really really slow. Now my question is, how do I use this for loop, and make the servo move at a more reasonable, but slow pace? Is it a question of increasing the degrees?, delay?
I would normally experiment, but my current project will not allow it, I cant afford to destroy a servo at this time. Any insight would help.