arduino

whats wrong with this code?

#include <Servo.h> 

 

Servo myservo;  // create servo object to control a servo 

Servo servotwo;                // a maximum of eight servo objects can be created 

 

int pos = 0;    // variable to store the servo position 

 

void setup() 

  myservo.attach(9); // attaches the servo on pin 9 to the servo object 

  servotwo.attach(8);

 

 

void loop() 

  for(pos = 0; pos < 180; pos += 1)   

  {                                  

    myservo.write(pos);              

    delay(15);                       

  } 

  for(pos = 180; pos>=1; pos-=1)    

  {                                

    myservo.write(pos);            

    delay(15);                     

  } 

  {

    for(pos = 0; pos < 180; pos += 2)

   {

     servotwo.write(pos);

     delay(15);

   }

   {

    for(pos = 180; pos>=1; pos-=1)    

   }                            

    servotwo.write(pos);           

    delay(15);                        

   } 

  }

 

Your code ‘looks’ fine to me.

I was hoping to catch you in the shoutbox, but, I asked, what does the code actually do when you try running it?

i’m trying to run two servos

i’m trying to run two servos of my arduino using sweep.

thanks that works

thanks that works perfectly!!!