Hello, everyone!
Please, I'd like a help to make three servo drivers works together, in the same time, and in different positions. In program bellow is possible, but only after two of them had finished the sequency of program. Not in same time.
void loop() { // put your main code here, to run repeatedly:
for (int pulse=365;pulse<420;pulse++){
Servos.setPWM(SV1,0,pulse);
Servos.setPWM(SV3,0,pulse); // Move two servo drivers at the same time (good)
delay(5);
}
for (int pulse=410;pulse>335;pulse--){
Servos.setPWM(SV5,0,pulse); // Move one servo drivers only after the previous two arrived in position (Bad)
delay(5);
}
}
I'd like move the three servo motors at the same time in diffrent positions.
I appreciate any help!