Grumpy_Mike:
Then you are a fool, using the servo libary you just set the position and the pulses are generated automatically in the background. Without this sort of programming it will be impossible for you to do anything other than keep the servo in place.
Thank's a lot all. I will be using an Hitec servo that need a Ton of 2.1ms, T=20ms at 50Hz to go to end position (sorry for error, not 20Hz). And it need Ton 0.9msec to reach start position.
So could I write:
myservo.writeMicroseconds(2100);
delay(1000); // 50 pulse
myservo.writeMicroseconds(900);
delay(1000) //50 pulse
That's all? I will only need to reach start and end position for controlling a lever.