You are on page 1of 16

Let's Make ... Featured (/explore/) Write an Instructable (/about/create.

jsp) You (/you/)


(/)

Classes (/classes/) Contests (/contest/) Forums (/community/?categoryGroup=all&category=all) Answers (/tag/type-question/?sort=RECENT)


(http://www.autodesk.com)

Teachers (/teachers/)

About This Instructable

8 548,394 views Posted:


Oct 06, 2012
548 favorites
License:

ricardouvina
(/member/ricardouvina/)
Follow 85
Simple IR Proximity Sensor With Arduino by
(/member/ricardouvina/)
ricardouvina (/member/ricardouvina/) in arduino (/explore/category/technology/keyword/arduino/)
More by ricardouvina:
Download h (/id/Simple-IR-proximity-sensor-with-Arduino/) 5 Steps .

Collection I Made it! Favorite Share

(/id/Simple-
IR-proximity- (/id/Mood-
sensor-with- Lamp-with-
Arduino/) Arduino/)
(/file/FBCTV8JH7UR801K/)

Add instructable to:

; Group

Related

Automatic Switching of light


using IR proximity sensor
(/id/Automatic-Switch-ON-
(/file/FDX11D7H7URBGHP/) (/file/FNMPIP8H7W5YUTK/) And-OFF-Light/)
(/id/Automatic- by himshekhar.das
What Is an IR Proximity
Sensor? (/id/What-Is-an-IR-
Hello guys! In this instructable I'll teach you how to make a very simple proximity Proximity-Sensor/)
sensor using infrared LEDs and Arduino. by Funguypro
(/id/What-Is- (/member/Funguypro/)
After several times trying to optimize it, I finally came up with something that is Obstacle Avoider Robot
quite simple e precise. Just like my first instructable Using Arduino Uno And IR
Proximity Sensor
(https://www.instructables.com/id/Mood-Lamp-with-Arduino/), this project is
(/id/Obstacle-Avoid-Robot-
perfect for beginners in the arduino's world, with a few components anyone can (/id/Obstacle- Using-Arduino-Uno-and-IR-
make it. I hope you all enjoy it. Build a Proximity Sensor
with the Linkit One (/id/Build-
a-Proximity-Sensor-With-the-
Linkit-One/)
(/id/Build-a- by Prem67 (/member/Prem67/)
IR PROXIMITY SENSOR
(/id/IR-PROXIMITY-SENSOR/)
by appytechie
(/member/appytechie/)
(/id/IR-
Simple IR proximity sensor with Arduino

Step 1: Materials

(/file/FYRYAZEH7URBDTM/)

For this instructable you are gonna need:


- Arduino
- 1 IR LED receiver (photodiode with 2 pins, not the phototransistor with 3 pins)
- IR LED emitters (as much as you can get, but at least 2)
- 100K resistor (brown black yellow)
- Jumper wires
- Breadboard
- Electrical tape
- Buzzer(optional)

Be careful to don't mix up the LED receiver with the LED emitter, they all look
the same.

Step 2: Preparing the Sensor


(/file/F2XQI5KH7UQN14K/)

(/file/FOQ2QCYH7UQYPQ0/) (/file/FWL36YCH7URBDU7/)

(/file/FAMGR91H7UR7X9U/) (/file/F200SEYH7W4SMS2/)

Before mount it, we should prepare the IR LED receiver to don't receive light
from the sides, so than the sensor is more directional.
I use electrical tape to make it, but you can use a straw or anything that blocks
the light from the sides.
Cut a small piece of electrical tape and wrap it around the IR LED receiver,
forming a tube. Trim the edge with a pair of scissors until it's about 1cm long.
Have a look at images to see how I made it with electrical tape.

Step 3: Code Time!


(/file/FM1TP9GH7UR7XB2/)

Write the code above on the Arduino program and upload it to the Arduino.
I also added an buzzer to this project if you wanna "hear" the distance.

// Simple Proximity Sensor using Infrared


// Description: Measure the distance to an obstacle using infrared light emitted
by IR LED and
// read the value with a IR photodiode. The accuracy is not perfect, but works
great
// with minor projects.
// Author: Ricardo Ouvina
// Date: 01/10/2012
// Version: 1.0

int IRpin = A0; // IR photodiode on analog pin A0


int IRemitter = 2; // IR emitter LED on digital pin 2
int ambientIR; // variable to store the IR coming from the ambient
int obstacleIR; // variable to store the IR coming from the object
int value[10]; // variable to store the IR values
int distance; // variable that will tell if there is an obstacle or not

void setup(){
Serial.begin(9600); // initializing Serial monitor
pinMode(IRemitter,OUTPUT); // IR emitter LED on digital pin 2
digitalWrite(IRemitter,LOW);// setup IR LED as off
pinMode(11,OUTPUT); // buzzer in digital pin 11
}

void loop(){
distance = readIR(5); // calling the function that will read the distance and
passing the "accuracy" to it
Serial.println(distance); // writing the read value on Serial monitor
// buzzer(); // uncomment to activate the buzzer function
}

int readIR(int times){


for(int x=0;x<times;x++){
digitalWrite(IRemitter,LOW); // turning the IR LEDs off to read the IR
coming from the ambient
delay(1); // minimum delay necessary to read
values
ambientIR = analogRead(IRpin); // storing IR coming from the ambient
digitalWrite(IRemitter,HIGH); // turning the IR LEDs on to read the IR
coming from the obstacle
delay(1); // minimum delay necessary to read
values
obstacleIR = analogRead(IRpin); // storing IR coming from the obstacle
value[x] = ambientIR-obstacleIR; // calculating changes in IR values and
storing it for future average
}

for(int x=0;x<times;x++){ // calculating the average based on the


"accuracy"
distance+=value[x];
}
return(distance/times); // return the final value
}

//-- Function to sound a buzzer for audible measurements --//


void buzzer(){
if (distance>1){
if(distance>100){ // continuous sound if the obstacle is too close
digitalWrite(11,HIGH);
}
else{ // beeps faster when an obstacle approaches
digitalWrite(11,HIGH);
delay(150-distance); // adjust this value for your convenience
digitalWrite(11,LOW);
delay(150-distance); // adjust this value for your convenience
}
}
else{ // off if there is no obstacle
digitalWrite(11,LOW);
}
}

Of course you can edit it to fit in your own project. You can for example make a
robot change direction or velocity based on the distance read from the IR
sensor.

IR_proximity_sensor.zip
Download (https://cdn.instructables.com/ORIG/FB2/3VAZ/H7UQYPQ9/FB23VAZH7UQYPQ9.zip)
(https://cdn.instructables.com/ORIG/FB2/3VAZ/H7UQYPQ9/FB23VAZH7UQYPQ9.zip)

Step 4: Connect It Up.


(/file/FDX11D7H7URBGHP/)

(/file/FNPJB5FH7W4SQOS/) (/file/F4R55XIH7UQN2N9/)

(/file/FBCTV8JH7UR801K/) (/file/F3FZDSBH7UQYQGP/) (/file/FNMPIP8H7W5YUTK/)

(/file/F5AP73OH7W4SQVM/)
(/file/F17S7HKH7UR829N/)

Connect the resistor from the 5V pin to the anode pin of the IR LED receiver. All
the anodes pins of the IR LEDs emitters to the digital pin 2. A wire goes from the
analog pin 0 to the anode pin of IR LED receiver. Don't forget to connect all the
cathode pins of the LEDs to the ground pin.
The buzzer is optional, but if you are using it connect to the digital pin 11 and the
ground.
Infrared light isn't visible to naked eye, but you can see it thru a digital camera, it
helps to see if the LED is working or not.
Take a look at the pics.

Step 5: It's Done!


The sensor responds to 10 inches (25cm) or closer, so it's good for small
distances.
Feel free to modify this project to your way, and tell me your progress.
Comments are welcome.
Here is a video I've made.

Simple IR proximity sensor with Arduino

Comments
We have a be nice comment policy.
Please be positive and constructive. w I Made it! Add Images Post Comment

ajmal hassan (/member/ajmal+hassan/) 2016-09-08 Reply

Can it detect black color?

If it detects black color, then how do I differentiate between white and black
color?
Also, what are the changes to be done in the code if I am using only one
transmitter?

I will be very excited if you reply as soon as possible!

Flag

ajmal hassan (/member/ajmal+hassan/) . ajmal hassan (/member/ajmal+hassan/)


2016-09-08 Reply
Also, what changes should I do in the code for me to
detect only black color objects which will be placed at a small distance
(~2cm-3cm) from the led pair.

Again I will be excited if you reply as soon as possible!

Flag

Jan MinhS (/member/Jan+MinhS/) . ajmal hassan (/member/ajmal+hassan/)


2017-06-06 Reply
This isnt a color detector. Use LRD (light sensor to do
that) this thing is a distance detector so with this you can make a buglar
alarm, Objet avoider etc.

Flag

SomehowB (/member/SomehowB/) 2017-05-11 Reply

can i have controller to send a signal from sensor wireless to another controller
to make a buzzer go off?

Flag

Domen sostaric (/member/Domen+sostaric/) 2017-03-23 Reply

will it work with only one ir led?

Flag

Alexan24 (/member/Alexan24/) . Domen sostaric (/member/Domen+sostaric/)


2017-03-23 Reply
It should fs lfine!

Flag

Domen sostaric (/member/Domen+sostaric/) 2017-03-23 Reply

I have problem that my sensor is just reacting on ambient light how can i solve
this?

Flag

ZulI4 (/member/ZulI4/) 2017-02-17 Reply

how if using two or more sensors?

Flag
Alexan24 (/member/Alexan24/) 2015-11-27 Reply

This Is the code with the buzzer working!!

int IRpin = A0; // IR photodiode on analog pin A0


int IRemitter = 2; // IR emitter LED on digital pin 2
int ambientIR; // variable to store the IR coming from the ambient
int obstacleIR; // variable to store the IR coming from the object
int value[10]; // variable to store the IR values
int distance; // variable that will tell if there is an obstacle or not

void setup(){
Serial.begin(9600); // initializing Serial monitor
pinMode(IRemitter,OUTPUT); // IR emitter LED on digital pin 2
digitalWrite(IRemitter,LOW);// setup IR LED as off
pinMode(11,OUTPUT); // buzzer in digital pin 11
}

void loop(){
distance = readIR(5); // calling the function that will read the distance and
passing the "accuracy" to it
Serial.println(distance); // writing the read value on Serial monitor
buzzer(); // uncomment to activate the buzzer function
}

int readIR(int times){


for(int x=0;x<times;x++){
digitalWrite(IRemitter,LOW); //turning the IR LEDs off to read the IR coming
from the ambient
delay(1); // minimum delay necessary to read values
ambientIR = analogRead(IRpin); // storing IR coming from the ambient
digitalWrite(IRemitter,HIGH); //turning the IR LEDs on to read the IR coming
from the obstacle
delay(1); // minimum delay necessary to read values
obstacleIR = analogRead(IRpin); // storing IR coming from the obstacle
value[x] = ambientIR-obstacleIR; // calculating changes in IR values and storing
it for future average
}

for(int x=0;x<times;x++){ // calculating the average based on the "accuracy"


distance+=value[x];
}
return(distance/times); // return the final value
}

//-- Function to sound a buzzer for audible measurements --//


void buzzer(){
if (distance>1){
if(distance>100){ // continuous sound if the obstacle is too close
digitalWrite(11,HIGH);
}
else{ // bips faster when an obstacle approaches
digitalWrite(11,HIGH);
delay(150-distance); // adjust this value for your convenience
digitalWrite(11,LOW);
delay(150-distance); // adjust this value for your convenience
}
}
else{ // off if there is no obstacle
digitalWrite(11,LOW);
}
}

Flag
Sandesh p (/member/Sandesh+p/) . Alexan24 (/member/Alexan24/) Reply

2017-02-15
Which arduino board will interface both IR sensors and image
input...... And give one output at a time..... My project is smart traffic light
control using IR sensors and image processing technique

Flag

Alexan24 (/member/Alexan24/) . Sandesh p (/member/Sandesh+p/) Reply

2017-02-16
I think arduino mega or due will do the job! :)

Flag

naimro7 (/member/naimro7/) . Alexan24 (/member/Alexan24/) 2015-12-03 Reply

sir. can u help me with my project. im working on project that using this
sensor. my project smart street light that can detect car movements then
the light will be on. can u help me please.

Flag

Alexan24 (/member/Alexan24/) . naimro7 (/member/naimro7/) 2015-12-12 Reply

I did not understand your project much but if you replace the buzzer with
an led it will work as well! Good luck and let me know if you need anything
else!

Flag

Sandesh p (/member/Sandesh+p/) 2017-02-15 Reply

Hello, can any one tell which arduino board will interface both IR sensors and
image input..... And give one output

Flag

NeelaK (/member/NeelaK/) 2017-01-26 Reply

Hi all, how can i connect LED instead of buzzer ??

what is the code for that??

Flag

Jose MichaelD (/member/Jose+MichaelD/) 2017-01-10 Reply

hi. around how many mA does the circuit need?

Flag

Jose MichaelD (/member/Jose+MichaelD/) . Jose MichaelD


(/member/Jose+MichaelD/) 2017-01-10 Reply

not counting the buzzer if possible

Flag

RomeliiA (/member/RomeliiA/) 2016-09-22 Reply

when i try to use your code .. I notice the pinMode(1,OUTPUT); was active and i
don't know how to turn it off.
I made a project that's related to this code.. i hope you can help me.

Flag

Arduinoteee (/member/Arduinoteee/) . RomeliiA (/member/RomeliiA/) Reply


Port 1 is the serial com port. this port is active whenever you 2016-12-08
use the serial.begin(serial monitor) if you remove the serial
begin statement from the setup this port won't be active but you will also
not be able to use serial monitor.

Flag

KrishnaM53 (/member/KrishnaM53/) 2016-05-09 Reply

hi i want to track any valuble devices like keys or etc . i want to add that sensor
that device like key or etc . so that i can check how much far from me . In this
scenario will it be helpful for me . i have seen that it detects height of a object
from the top . but i need sensor which can tell how much distance far from me.
can u tell me which device will be help ful for my project.

Flag

StudentBuilds (/member/StudentBuilds/) . KrishnaM53 (/member/KrishnaM53/)


2016-06-29 Reply
You should try an ultra-sound boad such as the HC-
SR04

Flag

StudentBuilds (/member/StudentBuilds/) . KrishnaM53 (/member/KrishnaM53/)


2016-06-29 Reply
You should try an ultra-sound boad such as the HC-
SR04

Flag

2( /member/%D9%87%D8%A8%D8%A9%D8%A72/) 2016-04-22 Reply

Hey! i'm doing this for my graduation project (including other work) .
i want a signal only if a specific distance is mesured (distance detector)

for example if a small car is standing below it will be 2 meters far from it .. if a
big car is standing below and the detector gets less then 1.2 meters it will give a
signal so the car can't get in

pleeaaaase i need help replay as soon as u can

Flag

Nicholasayes (/member/Nicholasayes/) 2016-04-20 Reply

Hi I would like to ask if you used any pwm functions for the LEDs as usually that
is required when working with LEDs

Flag

schuitz (/member/schuitz/) 2013-03-28 Reply

Visitors to this instructable should understand that the IR LED setup in this
schematic is wrong on many levels. The schematic should be corrected and
updated.

There is no type of diode that can be safely and reliably connected in parallel
this way. LEDs are not resistive light bulbs. The forward voltage Vf from device
to device is not guaranteed to be the same for a given current. You are
effectively limiting the current to the diodes (and not evenly) by maxing out the
driver in the microcontroller.

In the simplest and least desirable solution you need one limiting resistor per
diode, where the resistor size is (5 -Vf)/If where If is the desired forward current
of the diode. So a typical steady 20mA and Vf of 1.3V is a resistor value of 185
ohms.
In practice you should reduce resistive losses by stacking 2 or three diodes
such that (5 - 3*Vf)/If = 55 ohms and now you get three times the light for the
same current output.

Further, considering the limitations of your power supply, the current can be
pulsed much higher, and the values read back during the on cycle, so long as
the average power dissipation stays below rated. In this case you will have to
offload the switching with an external transistor.

Flag

nickw_za (/member/nickw_za/) . schuitz (/member/schuitz/) 2016-02-22 Reply

Hi Schuitz.

Thanks for this. I was also wondering the same. I assumed 1 limiting
resistor per emitting diode. But this could be done in parallel from the
breadboard power bus (using the Arduino as a power source). Is that
correct?
Do you also need a limiting resistor for the IR sensor (phototransistor)?

Ta

Nick

Flag

dushyantahuja (/member/dushyantahuja/) 2014-07-26 Reply

Would it make sense to switch off the LEDs in your code after checking the
distance. The current code only switches them off momentarily. Considering
that you're not using any current limiting resistors - the LEDs could get
damaged.

Flag

nickw_za (/member/nickw_za/) . dushyantahuja (/member/dushyantahuja/) Reply

2016-02-22
Hi Dushyantahuja,
Did you eventually use current limiting resistors for your emitting diodes?

Ta

Nick

Flag

zoran416 (/member/zoran416/) 2016-02-06 Reply

Works great! Thanks for the tutorial

Flag

Tsu-RiZ (/member/Tsu-RiZ/) 2016-01-07 Reply

Hi Ricardouvina, For the receiver, is there a difference if i used the dome


shaped one with 3 legs rather than your 2 leg ones? also I tried using ur
program but only when i changed the delay=100 for emitter=low, would the
result be stable. Otherwise the result would be just a jumpy mess. But it wouldnt
be logical since it would most of the time be reading the environmental infrared
radiation? Sorry for the messy explanation. if u need more details to the
problem please inbox me. Thanks in advance!

Flag

Tsu-RiZ (/member/Tsu-RiZ/) . Tsu-RiZ (/member/Tsu-RiZ/) 2016-01-07 Reply

Also, im not using a buzzer. Im trying to extract out the distance for my
project use.
Flag

pavgupta (/member/pavgupta/) 2016-01-05 Reply

i wanted to make this for my bungalow gate but then i would have to put the
receivers on the other side right or the transmitter on the other side.

also what if i had to make this thing for my bedroom door without the bread
board.any link or anything like .

Thanks Alot

Flag

pachytrance (/member/pachytrance/) 2015-12-29 Reply

I made it!!

Flag

SwapnilA3 (/member/SwapnilA3/) 2015-11-01 Reply

Update:The buzzer work but is always on...it isnt giving beeps as in the
video...??

Flag

SwapnilA3 (/member/SwapnilA3/) 2015-10-31 Reply

I made the project...But the buzzer isnt working..plz help

Flag

RompiC (/member/RompiC/) 2015-07-27 Reply

Very low range At least for me and the photo diode is reverse biased

Flag

mgupta15 (/member/mgupta15/) 2013-03-20 Reply

I think there is some error in schematic ...... I think that the reverse bias should
be added to photodiode ( IR LED Receiver) and not forward bias. I connected
up with forward bias and could not get any reading. I have even triple checked
my arduino's analog input pins. Mostly at many other IR sensor tutorials and
schematic it is reversed biased. I think Arduino is not sensitive to voltage
changes in forward bias. Please double check your schematic and your project.

Flag

SIM-Tech (/member/SIM-Tech/) . mgupta15 (/member/mgupta15/) Reply

2015-06-26
i her you but i dont understand where you see a issue? can you
post a quick pencil sketch pic of the proposal diagram of the renewed
schematic? thanks

Flag

RukLo (/member/RukLo/) . mgupta15 (/member/mgupta15/) 2015-06-14 Reply

Thanks for the very good example and the error logs in this posts. Keep
up the good work. I will try to move brushless motors through ESCs by
using IR proximity sensors (probably 2). I will post the example when I'm
done.

Cheers

Flag
SIM-Tech (/member/SIM-Tech/) . RukLo (/member/RukLo/) 2015-06-26 Reply

did you ever got this esc and motors done?>

Flag

gabrielw6 (/member/gabrielw6/) . mgupta15 (/member/mgupta15/) Reply

2015-04-16
Yeah, actually the vast majority of the IR sensors are supposed
to be reverse biased, and forward biasing them would create almost the
same effect of a normal IR emitter, and sometimes it may even burn the
diode.

Flag

cryptodraco (/member/cryptodraco/) . mgupta15 (/member/mgupta15/) Reply

2015-01-03
I have been faced to the same problem. My ir receiver didn't
worked in forward (I have tried with different bipolar IR receiver) but it
nicely works on reverse bias. Like you said the arduino wasn't sensible in
forward. Your comment help me much. Thank you @mgupta15

Flag

SIM-Tech (/member/SIM-Tech/) 2015-06-26 Reply

why 4 ir's emitters ? why not just 1 if is only going to be in a upwards direction?
or any direction really this works by reflecting of waves coming back from a
object in proximity and waves expands like water ripples so why 4?

Flag

JulianV2 (/member/JulianV2/) 2015-04-07 Reply

Hello, nice work for putting this together, I'm wondering if there's a possibility to
replace the buzzer for a servo, I'm trying to make an IR proximity sensor that
moves the servo depending on the distance but I can't figure it out yet, any help
will be very much appreciated!

Flag

RukLo (/member/RukLo/) . JulianV2 (/member/JulianV2/) 2015-06-14 Reply

The output of the IR sensor is Vcd at certain level which in this case
Ricardo is sending it to OutPin11 "pinMode(11,OUTPUT); // buzzer in
digital pin 11"

When the voltage is too low you won't be able to move your servo but with
this same output you could move it to a certain extent. Im gonna try this
approach for a prototype but I will connect the output of the micro
controller to an ESC and a brushless motor. Before I do that I will try it on
a servo because I will be using a similar code in the ESC.

SOLUTION:

Have you tried just plugging the servo control signal to pin 11 and making
the changes in the code using the example on arduino's webpage and
replacing the pot for the IR output? See images attached and weblinks...

This webpage shows what you are attempting exactly to do but with
IR integrated sensors. SHARP brand (see image
3)http://electronics.stackexchange.com/questions/594...
(http://electronics.stackexchange.com/questions/59467/sharp-ir-distance-
sensor-outputting-consistently-high-voltage)
Arduino's forum for servo control:

http://playground.arduino.cc/Learning/SingleServoE...
(http://playground.arduino.cc/Learning/SingleServoExample)
Important: You will have to make some changes to the code posted
in Ricardo's example and combining it with what the servo needs.
Let me know how it goes? I will have my code in about a week. I am using
a SHARP IR sensor instead due to the application but it is the same
principle.

Cheers, I hope everything works. Otherwise do not hesitate to contact me.

IMAGES ARE NOT MINE. CREDIT TO THE REFERENCES.

(https://cdn.instructables.com/F3A/HSNN/IAWC31ID/F3AHSNNIAWC31ID.LARGE.jpg)

(https://cdn.instructables.com/F8R/YU9Q/IAWC31K4/F8RYU9QIAWC31K4.LARGE.jpg)

(https://cdn.instructables.com/F92/BSAB/IAWC31TI/F92BSABIAWC31TI.LARGE.jpg)

Flag

reemsaleh (/member/reemsaleh/) 2015-04-14 Reply

there are 2 green wires in which pin did u insert it

Flag

jpineda12 (/member/jpineda12/) 2013-09-14 Reply

What does 150-distance mean? Help!

Flag

gabrielw6 (/member/gabrielw6/) . jpineda12 (/member/jpineda12/) Reply

2014-01-03
The value 150 he imposed as a "threshold", where the "beeps"
from the buzzer will repeat at decreasing rates, since the
distance(variable) will get higher(because the object is getting close)
providing the distance variable value to be inversely proportional to the
real, physical distance measure.

Flag

ironheartbj18 (/member/ironheartbj18/) . gabrielw6 (/member/gabrielw6/) Reply

2015-03-15
on line 55 and 57, I am wondering what happened more than
151 negative number of distance? if 150 - 151(151 is convert distance
number) will be negative 1. because it said delay(150 - distance); , so will
it work if delay(-1) function?

here example code...

```
void buzzer(){

if (distance>1){

if(distance>100){ // continuous sound if the obstacle is too close

digitalWrite(11,HIGH);

}
else{ // beeps faster when an obstacle approaches

digitalWrite(11,HIGH);

delay(150-distance); // adjust this value for your convenience

digitalWrite(11,LOW);

delay(150-distance); // adjust this value for your convenience

}
else{ // off if there is no obstacle

digitalWrite(11,LOW);

```

Flag

juanmacrescente (/member/juanmacrescente/) 2014-12-16 Reply

any ideas on how to get this to work in the raspberry

Flag

I More Comments

Newsletter About Us
Let your inbox help you discover our best Who We Are (/about/)
projects, classes, and contests. Instructables Advertise (/advertise/)
will help you learn how to make anything! Contact (/about/contact.jsp)
Jobs (/community/Positions-available-at-Instructables/)
enter email I'm in!
Help (/id/how-to-write-a-great-instructable/)
Find Us Resources
Facebook (http://www.facebook.com/instructables) For Teachers (/teachers/)
Youtube (http://www.youtube.com/user/instructablestv) Residency Program (/pier9residency)
Twitter (http://www.twitter.com/instructables) Gift Premium Account (/account/give?sourcea=footer)
Forums (/community/?categoryGroup=all&category=all)
Pinterest (http://www.pinterest.com/instructables)
Answers (/tag/type-question/?sort=RECENT)
Google+ (https://plus.google.com/+instructables)
Sitemap (/sitemap/)

Terms of Service (http://usa.autodesk.com/adsk/servlet/item?siteID=123112&id=21959721) |


Privacy Statement (http://usa.autodesk.com/adsk/servlet/item?siteID=123112&id=21292079) |
Legal Notices & Trademarks (http://usa.autodesk.com/legal-notices-trademarks/) | Mobile Site (https://www.instructables.com)
(http://usa.autodesk.com/adsk/servlet/pc/index?id=20781545&siteID=123112)
2017 Autodesk, Inc.

You might also like