Active IR Sensor

Active infrared sensors consist of two elements: infrared source and infrared detector. Infrared sources include an LED or infrared laser diode. Infrared detectors include photodiodes or phototransistors. The energy emitted by the infrared source is reflected by an object and falls on the infrared detector.

Free HTML5 Bootstrap Template by FreeHTML5.co

IR Transmitter & IR Receiver

Infrared Transmitter is a light emitting diode (LED) which emits infrared radiations. Hence, they are called IR LED’s. Even though an IR LED looks like a normal LED, the radiation emitted by it is invisible to the human eye.

Infrared receivers are also called as infrared sensors as they detect the radiation from an IR transmitter. IR receivers come in the form of photodiodes and phototransistors. Infrared Photodiodes are different from normal photo diodes as they detect only infrared radiation.

Principle of Working

The principle of an IR sensor working as an Object Detection Sensor can be explained using the following figure. An IR sensor consists of an IR LED and an IR Photodiode; together they are called as Photo – Coupler or Opto – Coupler.

Free HTML5 Bootstrap Template by FreeHTML5.co

When the IR transmitter emits radiation, it reaches the object and some of the radiation reflects back to the IR receiver. Based on the intensity of the reception by the IR receiver, the output of the sensor is defined.

Arduino Code for IR module:

	void setup()
	{
	pinMode(13, OUTPUT); // LED pin
	}
	void loop() {
	if(analogRead(0) < 900) {
	digitalWrite(13, HIGH); // LED on = IR detected
	delay(100); // stretch...
	} else {
	digitalWrite(13, LOW); // LED off = no IR detected
	}
	}