Jump to content

[SOLVED] C code for robot. Need help.


daveoffy

Recommended Posts

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

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);

  } 
} 

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.