daveoffy Posted February 23, 2009 Share Posted February 23, 2009 This code only moves the servo on input 9, than after like 100 times around the other one goes. I don't understand. #include <Servo.h> Servo right; Servo left; int pos = 0; int posl = 0; void setup() { right.attach(9); left.attach(10); } void loop() { for(pos = 0; pos < 180; pos += 1) for(posl = 180; posl >= 1; posl -= 1) { right.write(pos); left.write(posl); delay(11); } } Link to comment https://forums.phpfreaks.com/topic/146582-solved-c-code-for-robot-need-help/ Share on other sites More sharing options...
daveoffy Posted February 24, 2009 Author Share Posted February 24, 2009 FIXED! #include <Servo.h> Servo right; Servo left; int pos = 0; int posl = 0; void setup() { right.attach(9); left.attach(10); } void loop() { for(pos = 0; pos <= 180; pos++) { right.write(pos); left.write(180 - pos); delay(11); } } Link to comment https://forums.phpfreaks.com/topic/146582-solved-c-code-for-robot-need-help/#findComment-769715 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.