3 Simple Ways to
Share What You Make

With Instructables you can share what you make with the world — and tap into an ever-growing community of creative experts.

PhotosPhotos

Share one or more photos of a project, recipe, or whatever you've made, quickly and easily.

Step by StepStep-By-Step

Share your step-by-step photos with text instructions of what you made so others can do it too!

VideoVideo

Share your how-to video. You'll need your embed code from a video site such as YouTube.

How to convert (almost) any 27 or 49 MHz RC Car into a Robotic car

Step 9Arduino code example

#define FWR 3
#define BACK 5
#define RIT 7
#define LEFT 9

void setup() {
  // put your setup code here, to run once:
   pinMode(FWR,OUTPUT);
   pinMode(BACK,OUTPUT);
   pinMode(RIT,OUTPUT);
   pinMode(LEFT,OUTPUT);
}

void loop() {
  // put your main code here, to run repeatedly:
   analogWrite(FWR,100);
   digitalWrite(RIT,HIGH);
   delay(1000);
  
   analogWrite(FWR,0);
   digitalWrite(RIT,LOW);
   delay(1000);
  
   analogWrite(BACK,100);
   digitalWrite(LEFT,HIGH);
   delay(10000);
  
   analogWrite(BACK,0);
   digitalWrite(LEFT,LOW);
   delay(1000);
}
« Previous StepDownload PDFView All StepsNext Step »

Pro

Get More Out of Instructables

Already have an Account?

close

All Steps Viewing
View all steps of an Instructable on the same page when you're a Pro Member.

Upgrade to Pro today!
2
Followers
1
Author:dflam(NewYorkBrass.com)