Introduction: Robotic Eye
This module (composed of a pair of LEDs, a infrared transmitter and a receiver and an IC that generates a frequency modulated) is generally used to detect obstacles in robots.
This module has some advantages over a simple LED emitting LEDs with a photodetector. The principal, in this case is that the emission frequency is modulated, preventing ambient light makes the receiver detect the wrong signal. Also, the construction module that facilitates interconnection and didactic use with the Arduino.
Step 1: Materials
- An Arduino board
- A sensor shield board
- 3 infrared sensor modules
- A standard servomotor
- A Styrofoam ball
- wires
Step 2: Mounting
Cut the Styrofoam ball to hold the arm of the servomotor, paint the Styrofoam ball in the shape of an eye, fit the servo arm in the eye and fit them into the servo.
Step 3: Mounting the Shield and Connecting Sensors
Mounting the Shield in Arduino, install the sensors with the aid of wires.
Note: The receiver module has 4 pins.
- A 5V
- 1 GND
- 1 OUT
- Enable (works to enable the module when it is without the jumper)
* Be careful not to inveter wires.
How to connect the wires:
Shield -> Sensors
pin 12 -> left sensor
pin 11 -> center sensor
pin 10 -> right sensor
Step 4: Mounting the Servo and Programing
After the sensors installed, install the servo on pin 9 of the shield, programming and testing.
The eye works as follows: to detect an object in front of each sensor (up to 40 cm, adjustable), the sensor changes state at the exit from Hi to Lo (of 5volts to zero) then the Arduino realize that there was a change state in one of its ports so, according to the software, the servomotor to rotate the eye to the preset position.
This was an application of the didactic use of infrared sensors. Many other applications are possible. The limit is your imagination. Hope you enjoy.
Software:
#include <Servo.h> // include servo library
Servo pescoco; // create servo object to control a servo
int pos =0;
int irdireita = 10;
int iresquerda = 12;
int ircentro = 11;
int tempo = 50;
void setup (){
pescoco.attach(9); // attaches the servo on pin 9 to the servo object
pinMode (irdireita, INPUT); // set pin irdireita (pin10) as input
pinMode (iresquerda, INPUT); // set pin iresquerda (pin12) as input
pinMode (ircentro, INPUT); // set pin ircentro (pin11) as input
}
void loop(){
int valdireita = digitalRead (irdireita);
int valesquerda = digitalRead (iresquerda);
int valcentro = digitalRead (ircentro);
if (valdireita == LOW){
pescoco.write(180);
pos = (180);
delay (tempo);
}
else if(valesquerda == LOW){
pescoco.write (0);
pos =(0);
delay (tempo);
}
else if (valcentro == LOW){
pescoco.write (90);
pos = (90);
delay (tempo);
}
else {
pescoco.write (pos);
delay (tempo);
}
}

Participated in the
Halloween Props Contest

Participated in the
Pocket-Sized Contest

Participated in the
Hurricane Lasers Contest
18 Comments
8 years ago on Introduction
Muito bom mesmo!! gostaria do manual, documento alguma coisa que me ajude com este sensor, você poderia compartilhar? Adquiri um igual porém não encontro informações relevantes para que funcione da maneira desejada :/
Reply 8 years ago on Introduction
Esse é o problema com esses eletrônicos da China. AS vezes encontramos na própria página alguma s dicas dos compradores.
9 years ago on Introduction
MAneiro. Gostei mt
Reply 9 years ago on Introduction
Valeu!
11 years ago on Introduction
Great for Halloween!!!
Reply 11 years ago on Introduction
By placing it in a hallowed toy skull rig the eyes to move when someone tries to get some candy!!!
11 years ago on Introduction
I SEE YOU!!!!
Reply 11 years ago on Introduction
Hehehe..
Reply 11 years ago on Introduction
I meant to say "EYE SEE YOU!"
11 years ago on Introduction
Looks awesome and like a lot of fun. I'd love to give this a try.
As a beginner to Arduino, could you take some time to explain the code to me? It looks somewhat simple but includes some functions I may not be familiar with.
Reply 11 years ago on Introduction
Hi ! Welcome to Arduino's World!
Im a beginner too. I will try to explain it to you (inside the code above) but my english is a little poor.
11 years ago on Introduction
I am trying to find the parts for this project. Was wondering where the parts could be found for reasonable prices. The sensors are difficult to find.
Reply 11 years ago on Introduction
Hi Below is the list of items I bought.
Arduino Board:
http://www.dealextreme.com/p/arduino-duemilanove-2009-atmega328-p-20pu-usb-board-blue-60cm-118078?item=50
Sensor Sheild:
http://www.dealextreme.com/p/jy-mcu-sensor-shield-v4-0-arduino-uno-2009-123623?item=32
BreadBord Wires:
http://www.dealextreme.com/p/30cm-breadboard-wires-for-electronic-diy-40-cable-pack-80207
Infrered Sensors:
http://dx.com/p/ir-infrared-sensor-switch-module-121517?item=1
Reply 11 years ago on Introduction
I appreciate the info. Looking forward to building this project! Thanks!!
Reply 11 years ago on Introduction
OK. Then show us some pictures as soon as possible
Reply 11 years ago on Introduction
Will do. Ordering the parts very soon.
11 years ago on Introduction
You should put a wireless camera inside the eyeball!
Reply 11 years ago on Introduction
Good idea!