jovan-josic-servo-love
Published

Servo robot

Servo wno are crazy it hits items if your servo stop you must to vait

BeginnerFull instructions provided106
Servo robot

Things used in this project

Hardware components

SG90 Micro-servo motor
SG90 Micro-servo motor
stick it on a desk like me in the youtube video
×1
Arduino UNO
Arduino UNO
conect the pins like me on cheme
×1
Jumper wires (generic)
Jumper wires (generic)
×1

Software apps and online services

Arduino IDE
Arduino IDE

Hand tools and fabrication machines

Tape, Double Sided
Tape, Double Sided
Tape, Foam
Tape, Foam

Story

Read more

Schematics

make this on your arduino uno

Code

code for it

C/C++
#include<Servo.h>
Servo Myservo;
int pos;
void setup()
{
Myservo.attach(3);
}

void loop()
{
  
  
for(pos=0;pos<=1000;pos++){
Myservo.write(pos);
delay(15);
}
  delay(0);
  
  for(pos=180;pos>=0;pos--){
Myservo.write(pos);
delay(15);
}
  delay(0);
  
}

Credits

jovan-josic-servo-love
1 project • 1 follower
Contact

Comments

Please log in or sign up to comment.