Cirkit Designer Logo
Cirkit Designer
Your all-in-one circuit design IDE
Home / 
Component Documentation

How to Use Sensor Infrarrojo: Examples, Pinouts, and Specs

Image of Sensor Infrarrojo
Cirkit Designer LogoDesign with Sensor Infrarrojo in Cirkit Designer

Introduction

The Sensor Infrarrojo is a device designed to detect infrared (IR) radiation, which is invisible to the human eye but emitted by objects based on their temperature. This sensor is widely used in applications such as motion detection, temperature measurement, and proximity sensing. Its ability to detect IR radiation makes it an essential component in security systems, remote controls, and automation projects.

Common applications include:

  • Motion detection in security systems
  • Proximity sensing in robotics
  • Temperature measurement in industrial and medical devices
  • Line-following robots and obstacle detection

Explore Projects Built with Sensor Infrarrojo

Use Cirkit Designer to design, explore, and prototype these projects online. Some projects support real-time simulation. Click "Open Project" to start designing instantly!
Arduino UNO Based IR Sensor Object Detection System
Image of IR SENSOR: A project utilizing Sensor Infrarrojo in a practical application
This circuit consists of an Arduino UNO connected to an infrared (IR) sensor. The Arduino provides 5V power and ground to the IR sensor and reads its output signal on digital pin D6. The embedded code on the Arduino is configured to serially output a message indicating the presence or absence of an object based on the IR sensor's detection.
Cirkit Designer LogoOpen Project in Cirkit Designer
Arduino UNO IR Sensor Interface
Image of sam: A project utilizing Sensor Infrarrojo in a practical application
This circuit consists of an Arduino UNO microcontroller connected to an infrared (IR) sensor. The Arduino provides 5V power and ground to the IR sensor and reads the sensor's output signal through digital pin D9. The purpose of this circuit is likely to detect the presence of objects or measure distances using the IR sensor, with the Arduino processing the sensor data.
Cirkit Designer LogoOpen Project in Cirkit Designer
Arduino Uno R3 Based IR Sensor Intrusion Detector
Image of ir_classroom_entry: A project utilizing Sensor Infrarrojo in a practical application
This circuit is designed to detect the presence of an object using an IR sensor and signal its detection by lighting up an LED. The Arduino Uno R3 is programmed to read the IR sensor output connected to its digital pin 12, and when an object is detected, it activates the LED connected to digital pin 8. The LED is protected by a 220-ohm resistor in series, and the IR sensor is powered by the Arduino's 5V supply.
Cirkit Designer LogoOpen Project in Cirkit Designer
Arduino UNO Based IR Sensor Interface
Image of IR sensor: A project utilizing Sensor Infrarrojo in a practical application
This circuit consists of an Arduino UNO microcontroller connected to an infrared (IR) sensor. The Arduino provides 5V power and ground to the IR sensor and receives sensor output signals on its digital pin D2. The purpose of this circuit is likely to detect IR signals, which the Arduino can process in its main loop, although the provided code is currently empty and does not implement any specific functionality.
Cirkit Designer LogoOpen Project in Cirkit Designer

Explore Projects Built with Sensor Infrarrojo

Use Cirkit Designer to design, explore, and prototype these projects online. Some projects support real-time simulation. Click "Open Project" to start designing instantly!
Image of IR SENSOR: A project utilizing Sensor Infrarrojo in a practical application
Arduino UNO Based IR Sensor Object Detection System
This circuit consists of an Arduino UNO connected to an infrared (IR) sensor. The Arduino provides 5V power and ground to the IR sensor and reads its output signal on digital pin D6. The embedded code on the Arduino is configured to serially output a message indicating the presence or absence of an object based on the IR sensor's detection.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of sam: A project utilizing Sensor Infrarrojo in a practical application
Arduino UNO IR Sensor Interface
This circuit consists of an Arduino UNO microcontroller connected to an infrared (IR) sensor. The Arduino provides 5V power and ground to the IR sensor and reads the sensor's output signal through digital pin D9. The purpose of this circuit is likely to detect the presence of objects or measure distances using the IR sensor, with the Arduino processing the sensor data.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of ir_classroom_entry: A project utilizing Sensor Infrarrojo in a practical application
Arduino Uno R3 Based IR Sensor Intrusion Detector
This circuit is designed to detect the presence of an object using an IR sensor and signal its detection by lighting up an LED. The Arduino Uno R3 is programmed to read the IR sensor output connected to its digital pin 12, and when an object is detected, it activates the LED connected to digital pin 8. The LED is protected by a 220-ohm resistor in series, and the IR sensor is powered by the Arduino's 5V supply.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of IR sensor: A project utilizing Sensor Infrarrojo in a practical application
Arduino UNO Based IR Sensor Interface
This circuit consists of an Arduino UNO microcontroller connected to an infrared (IR) sensor. The Arduino provides 5V power and ground to the IR sensor and receives sensor output signals on its digital pin D2. The purpose of this circuit is likely to detect IR signals, which the Arduino can process in its main loop, although the provided code is currently empty and does not implement any specific functionality.
Cirkit Designer LogoOpen Project in Cirkit Designer

Technical Specifications

The Sensor Infrarrojo comes in various models, but the following are general specifications for a typical IR sensor module:

Parameter Value
Operating Voltage 3.3V to 5V
Operating Current 20mA (typical)
Detection Range 2 cm to 30 cm (depending on model)
Output Signal Digital (High/Low) or Analog
Wavelength Sensitivity 760 nm to 1100 nm (IR spectrum)
Response Time < 2 ms
Operating Temperature -25°C to 85°C

Pin Configuration

Below is the typical pin configuration for a 3-pin IR sensor module:

Pin Name Description
1 VCC Power supply pin (3.3V to 5V)
2 GND Ground connection
3 OUT Output pin (Digital or Analog signal, depending on model)

Usage Instructions

How to Use the Sensor Infrarrojo in a Circuit

  1. Power the Sensor: Connect the VCC pin to a 3.3V or 5V power source and the GND pin to the ground.
  2. Connect the Output: Attach the OUT pin to a microcontroller's input pin (e.g., Arduino) or directly to an LED or buzzer for simple applications.
  3. Adjust Sensitivity (if applicable): Some IR sensors have a potentiometer to adjust the detection range. Turn the potentiometer clockwise or counterclockwise to fine-tune the sensitivity.
  4. Test the Sensor: Place an object within the detection range and observe the output signal. The OUT pin will typically go HIGH (or LOW, depending on the sensor) when an object is detected.

Important Considerations and Best Practices

  • Avoid Direct Sunlight: IR sensors can be affected by strong ambient light, such as direct sunlight. Use the sensor in controlled lighting conditions for accurate results.
  • Use a Resistor: If connecting the sensor output to an LED, use a current-limiting resistor to prevent damage to the LED.
  • Check the Datasheet: Always refer to the specific datasheet of your IR sensor model for precise details and limitations.
  • Interference: Avoid placing multiple IR sensors too close to each other, as their signals may interfere.

Example: Connecting the Sensor Infrarrojo to an Arduino UNO

Below is an example of how to use the Sensor Infrarrojo with an Arduino UNO to detect motion and turn on an LED:

// Define the pin connections
const int irSensorPin = 2;  // IR sensor output connected to digital pin 2
const int ledPin = 13;      // Built-in LED on Arduino UNO

void setup() {
  pinMode(irSensorPin, INPUT);  // Set IR sensor pin as input
  pinMode(ledPin, OUTPUT);      // Set LED pin as output
  Serial.begin(9600);           // Initialize serial communication
}

void loop() {
  int sensorValue = digitalRead(irSensorPin);  // Read the IR sensor output
  
  if (sensorValue == HIGH) {  // If an object is detected
    digitalWrite(ledPin, HIGH);  // Turn on the LED
    Serial.println("Object detected!");  // Print message to serial monitor
  } else {
    digitalWrite(ledPin, LOW);  // Turn off the LED
    Serial.println("No object detected.");  // Print message to serial monitor
  }
  
  delay(100);  // Small delay for stability
}

Troubleshooting and FAQs

Common Issues and Solutions

  1. Sensor Not Detecting Objects

    • Cause: Incorrect wiring or insufficient power supply.
    • Solution: Double-check the connections and ensure the power supply matches the sensor's requirements.
  2. False Positives

    • Cause: Ambient IR interference or high sensitivity.
    • Solution: Adjust the sensitivity using the potentiometer (if available) and avoid direct sunlight.
  3. Output Signal Not Changing

    • Cause: Faulty sensor or incorrect pin configuration.
    • Solution: Test the sensor with a multimeter or replace it if necessary. Verify the pin connections.
  4. Multiple Sensors Interfering

    • Cause: Overlapping IR signals from nearby sensors.
    • Solution: Increase the distance between sensors or use shielding to isolate them.

FAQs

Q: Can the Sensor Infrarrojo detect transparent objects?
A: Transparent objects, such as glass, may not reflect enough IR radiation for detection. Use a specialized sensor for such applications.

Q: How do I increase the detection range?
A: Adjust the potentiometer (if available) or use a lens to focus the IR beam. Note that increasing the range may reduce accuracy.

Q: Can I use the sensor outdoors?
A: While possible, outdoor use may result in reduced performance due to sunlight and environmental factors. Consider using an IR sensor with ambient light filtering.

Q: Is the sensor compatible with 3.3V microcontrollers?
A: Yes, most IR sensors operate within a 3.3V to 5V range, making them compatible with 3.3V microcontrollers like the ESP32. Always verify the specific model's datasheet.