My robot consist of a reused remote control tank chassis and a couple of other components which can be found below in the "Materials Needed" section. I've never used an Arduino before but I have heard of them since the 7th grade and now I'm psyched in having to use one. I've completed this robot with the help of many sources for example websites, books about Arduinos, family, and friends.
Remove these ads by
Signing UpStep 1: Materials Needed
1. RC Tank Chassis
2. Arduino Uno
3. Breadboard w/ Jumper Wire Set
4. SN754410NE Motor Driver
5. Standard Servo
6. Ping Ultrasonic Range Finder
7. 9 Volt Snap Connector
8. 9 Volt Battery
9. DC Power Plug
10. x4 D Size Batteries
11. x4 D Battery Holder
12. Male Servo Extension
13. USB A to B Cable
14. 6" x 6" Base Plate (Optional)
Tools
1. Screw Driver Set
2. Hot Glue Gun
3. Solder Pencil








































Visit Our Store »
Go Pro Today »




Two things:
1: You should use perfboard instead of a breadboard for a cleaner and more permanent circuit
2: Radioshack sucks, don't go there. You will be a happier teenager, and not as broke, too.
be careful the nxt time u do it
"Video! Video! Video! Video!"
int motorpin1= 3;
int motorpin2= 4;
int enablepin= 9;
int motorpin3= 5;
int motorpin4= 6;
int enablepin2= 10;
int leftdist, rightdist;
long duration;
void setup()
{
pinMode(motorpin1, OUTPUT);
pinMode(motorpin2, OUTPUT);
pinMode(enablepin, OUTPUT);
pinMode(motorpin3, OUTPUT);
pinMode(motorpin4, OUTPUT);
pinMode(enablepin2, OUTPUT);
digitalWrite(enablepin, HIGH);
digitalWrite(enablepin2, HIGH);
}
void loop()
{
digitalWrite(motorpin1, HIGH);
digitalWrite(motorpin2, HIGH);
digitalWrite(motorpin3, HIGH);
digitalWrite(motorpin4, HIGH);
}