Infrared Obstacle Avoidance IR Sensor Module (Active Low)

₹65

In stock

  • (GST Bill) Enter your GST number at checkout
  • Free shipping on eligible prepaid orders
  • Secure payments via Razorpay and Paytm
  • Dispatch in 24 Hours from Noida warehouse!
  1. Detection distance: 2 ~ 30cm
  2. Detection angle: 35 °
  3. Comparator chip: LM393
  4. 3mm screw holes for easy mounting
SKU: SE1057 Category:

Description

The Infrared Obstacle Avoidance IR Sensor Module is an essential proximity detection device used in autonomous 2WD/4WD robotic chassis, smart collision prevention systems, and industrial proximity switches. It consists of a focused IR LED emitter that transmits invisible light pulses and an IR receiver photodiode configured to capture reflected infrared light.

When an object enters the sensor’s field of view (~35° cone), infrared light reflects back into the receiver tube. The onboard LM393 differential comparator evaluates the signal against a user-configured threshold set via the onboard trimmer potentiometer. When an obstacle is detected, the OUT pin switches from HIGH (VCC) to LOW (GND), and the onboard green indicator LED lights up instantly.


Technical Specifications

Parameter Technical Detail
Sensor Type Infrared Reflective Pair (LED Transmitter + Receiver Photodiode)
Signal Output Type Digital Output (Active LOW when obstacle is detected)
Operating Voltage 3.3V to 5.0V DC
Detection Distance 2 cm to 30 cm (Adjustable via onboard potentiometer)
Detection Angle ~35° conical effective range
Comparator Chip LM393 High-Precision Differential IC
Status Indicators Power LED (Red) + Obstacle Trigger Indicator LED (Green)
Mounting Pre-drilled 3.0 mm bolt hole for easy mechanical fixing
Board Dimensions ~32 mm × 14 mm × 10 mm

Pinout Configuration

The module features a straightforward 3-pin connection interface:

Pin Marking Function Name Description
VCC Power Input Connect to +3.3V or +5V DC power rail.
GND System Ground Common ground connection (0V).
OUT Digital Output Signal pin; outputs LOW (0V) when an obstacle is detected, otherwise stays HIGH (VCC).

Basic Arduino Wiring & Example Code

Wiring Diagram

  • VCC ➔ Arduino 5V (or 3.3V)

  • GND ➔ Arduino GND

  • OUT ➔ Arduino Digital Pin 7

C++

// Active Low IR Obstacle Avoidance Sensor Interfacing
const int obstacleSensorPin = 7; // OUT pin connected to Digital Pin 7

void setup() {
  pinMode(obstacleSensorPin, INPUT);
  Serial.begin(9600);
  Serial.println("IR Obstacle Avoidance Sensor Initialized.");
}

void loop() {
  int sensorState = digitalRead(obstacleSensorPin);

  // Active Low Logic: LOW indicates an obstacle is present
  if (sensorState == LOW) {
    Serial.println("WARNING: Obstacle Detected!");
  } else {
    Serial.println("Status: Path Clear");
  }

  delay(150); // Small delay for stable monitoring
}

Key Features & Highlights

  • Active Low Digital Logic: Simplifies microcontroller interrupt programming—directly triggers LOW-level logic routines during obstacle events.

  • Onboard Potentiometer Trimmer: Easily adjust sensing distance from 2 cm to 30 cm to suit distinct ambient lighting and chassis mounting depths.

  • Dual LED Indicators: Power LED confirms active power rail, while the detection LED provides immediate visual confirmation during debugging.

  • Compact & Lightweight: Small form factor allows smooth mounting on front bumpers, side panels, or mini robot platforms without adding significant weight.

Common Applications

  • Collision avoidance for 2WD/4WD smart cars and mobile robots.

  • Touchless automatic hand sanitizers, faucets, and door mechanisms.

  • Object counting on conveyor belts and material handling tracks.

  • Edge detection and cliff sensing for robotic vacuum cleaners.


What’s Included in the Box

  • 1 × Infrared Obstacle Avoidance IR Sensor Module (Active Low)


Why Buy From Aryabot?

  • 100% Quality Hardware: Assembled using durable LM393 ICs, high-sensitivity photodiode tubes, and double-sided glass-fiber FR-4 PCBs.

  • Tested & Benchmarked: Pre-tested for optical response time, potentiometer threshold range, and logic switching accuracy.

  • GST Invoice Provided: Tax-compliant B2B invoices generated for commercial deployments, educational institutions, and research labs.

  • Pan-India Express Dispatch: Fast order processing and reliable direct delivery from our Noida fulfillment facility.

 

Additional information

Weight 0.05 kg
Dimensions 5 × 4 × 1 cm