Skip to main content

Interfacing IR Obstacle Sensor with Raspberry Pi 3

 

๐Ÿ”น Overview

An IR Obstacle Sensor is used to detect obstacles using infrared light. It is commonly used in robots, line-following cars, and automatic doors. In this tutorial, we will connect an IR sensor to Raspberry Pi 3 and detect obstacles.


๐Ÿ› ️ Components Required

✔️ Raspberry Pi 3
✔️ IR Obstacle Sensor
✔️ Breadboard & Jumper Wires


๐Ÿ”Œ Circuit Diagram

๐Ÿ”— IR Sensor to Raspberry Pi Connections 

IR Sensor PinConnection
VCC3.3V (Raspberry Pi)
GNDGND
OUTGPIO 17 (Detects obstacle)

๐Ÿ“œ Python Code to Read IR Sensor

Save the following Python script as ir_sensor.py and run it on Raspberry Pi.

python
import RPi.GPIO as GPIO import time # Define GPIO pin IR_SENSOR_PIN = 17 # Setup GPIO.setmode(GPIO.BCM) GPIO.setup(IR_SENSOR_PIN, GPIO.IN) try: while True: if GPIO.input(IR_SENSOR_PIN) == 0: print("๐Ÿšง Obstacle Detected!") else: print("✅ No Obstacle.") time.sleep(1) except KeyboardInterrupt: GPIO.cleanup() print("\nProgram stopped.")

๐Ÿ’ก How It Works

  1. The IR sensor emits infrared light and detects if it is reflected back from an obstacle.
  2. If an object is detected, the sensor's output is LOW (0), otherwise, it remains HIGH (1).
  3. The script continuously checks for an obstacle and displays the result on the screen.

๐ŸŽฏ Applications

✅ Obstacle-avoiding robots
✅ Automatic doors
✅ Line-following vehicles


๐Ÿ“ เคฎเคฐाเค ीเคค เคธเคฎเคœाเคตเคฃी (Marathi Explanation)

๐Ÿ”น เคชเคฐिเคšเคฏ

IR เค…เคกเคฅเคณा เคธेเคจ्เคธเคฐ (Obstacle Sensor) เคนा เคเค• เคธेเคจ्เคธเคฐ เค†เคนे เคœो เค…เคฆृเคถ्เคฏ (Infrared) เคช्เคฐเค•ाเคถ เคชाเค เคตเคคो เค†เคฃि เคช्เคฐเคคिเคฌिंเคฌ เคชเคฐเคค เค†เคฒ्เคฏाเคธ เค…เคกเคฅเคณा เคถोเคงเคคो. เคฏाเคšा เคตाเคชเคฐ เคฐोเคฌोเคŸ्เคธ, เค‘เคŸोเคฎॅเคŸिเค• เคฆเคฐเคตाเคœे เค†เคฃि เคฒाเคˆเคจ-เคซॉเคฒोเค‡ंเค— เค•ाเคฐ्เคธเคฎเคง्เคฏे เค•ेเคฒा เคœाเคคो.


๐Ÿ› ️ เค†เคตเคถ्เคฏเค• เค˜เคŸเค•

✔️ เคฐाเคธ्เคชเคฌेเคฐी เคชाเคฏ เฅฉ
✔️ IR เค…เคกเคฅเคณा เคธेเคจ्เคธเคฐ
✔️ เคฌ्เคฐेเคกเคฌोเคฐ्เคก เค†เคฃि เคœเคฎ्เคชเคฐ เคตाเคฏเคฐ


๐Ÿ”Œ เคธเคฐ्เค•िเคŸ เค•เคจेเค•्เคถเคจ

IR เคธेเคจ्เคธเคฐ เคชिเคจเคฐाเคธ्เคชเคฌेเคฐी เคชाเคฏ เค•เคจेเค•्เคถเคจ
VCC3.3V
GNDGND
OUTGPIO 17

๐Ÿ“œ เคชाเคฏเคฅॉเคจ เค•ोเคก

เคนा เค•ोเคก ir_sensor.py เคจाเคตाเคจे เคธेเคต्เคน เค•เคฐा เค†เคฃि เคšाเคฒเคตा.

python
import RPi.GPIO as GPIO import time IR_SENSOR_PIN = 17 GPIO.setmode(GPIO.BCM) GPIO.setup(IR_SENSOR_PIN, GPIO.IN) try: while True: if GPIO.input(IR_SENSOR_PIN) == 0: print("๐Ÿšง เค…เคกเคฅเคณा เค†เคขเคณเคฒा!") else: print("✅ เค…เคกเคฅเคณा เคจाเคนी.") time.sleep(1) except KeyboardInterrupt: GPIO.cleanup() print("\nเคช्เคฐोเค—्เคฐॅเคฎ เคฅांเคฌเคฒा.")

๐Ÿ’ก เคนे เค•เคธे เค•ाเคฐ्เคฏ เค•เคฐเคคे?

  1. IR เคธेเคจ्เคธเคฐ เค‡เคจ्เคซ्เคฐाเคฐेเคก เคฒाเค‡เคŸ เคชाเค เคตเคคो เค†เคฃि เคคो เคชเคฐเคค เคชเคฐाเคตเคฐ्เคคिเคค เคाเคฒा เค•ी เค…เคกเคฅเคณा เคถोเคงเคคो.
  2. เค…เคกเคฅเคณा เค†เคขเคณเคฒ्เคฏाเคธ, เคธेเคจ्เคธเคฐเคšा เค†เค‰เคŸเคชुเคŸ LOW (0) เคนोเคคो, เค…เคจ्เคฏเคฅा เคคो HIGH (1) เคฐाเคนเคคो.
  3. เค•ोเคก เคธเคคเคค เคธेเคจ्เคธเคฐ เคตाเคšเคคो เค†เคฃि เค…เคกเคฅเคณा เค†เคนे เค•ा เคจाเคนी เคคे เคช्เคฐिंเคŸ เค•เคฐเคคो.

๐ŸŽฏ เค‰เคชเคฏोเค—

✅ เค…เคกเคฅเคณा เคŸाเคณเคฃाเคฐे เคฐोเคฌोเคŸ्เคธ
✅ เค‘เคŸोเคฎॅเคŸिเค• เคฆเคฐเคตाเคœे
✅ เคฒाเคˆเคจ-เคซॉเคฒोเค‡ंเค— เคตाเคนเคจ

Comments

Popular posts from this blog

IOT : GARDEN WATER SPRINKLER SYSTEM

IoT projects have gained immense popularity due to their ability to leverage the power of interconnected devices and data to create innovative solutions across various domains. IoT projects involve integrating sensors, actuators, and communication technologies to enable the seamless exchange of data between physical devices and the internet. These projects range from simple DIY experiments to complex industrial applications, each offering unique opportunities to transform our lives and improve efficiency. Whether it's creating a smart home automation system, monitoring environmental conditions, optimizing energy usage, or developing intelligent transportation systems, applications of IoT open up a world of possibilities for innovation and connectivity. By harnessing the potential of IoT, we can build intelligent and interconnected systems that revolutionize industries, enhance daily life, and pave the way for a more efficient and sustainable future. In this project we will be using...

POWER BI - THE ARCHITECTURE

Power BI Architecture: A Comprehensive Guide to Building Effective Data Analytics Solutions     Understanding Power BI Architecture: Power BI's architecture comprises four main components, each playing a pivotal role in the data analytics process: Data Sources:   Power BI connects to a wide range of data sources, including databases, cloud services, Excel files, web services, and more. This versatility enables organizations to consolidate their data from various systems into a single dashboard. Data Transformation:   Once the data is sourced, it undergoes transformation and cleaning processes to make it suitable for analysis. Power BI's Power Query Editor provides a user-friendly interface to manipulate, filter, and shape data according to specific requirements. Data Model:   The heart of Power BI's architecture lies in its data model, whic...

TOUCH PLATE BASED DOOR BELL

Title:  Touch plate based door bell  Circuit:  Components: IC 555 Resistors: 1 M, 100k, 330 ohms Transistor: BC547  PN2222A Capacitor: 10n 1 Copper plate : as touch plate. A 6v battery An LED / Ic UM66 Description: This is the simple circuit for touch plate based security system. In this project what basically done is, circuit detects stray voltages produced by mains voltage and electrostatic built  up in the room.If sufficient static voltage is detected by the plate then chip will charge up. Transistor BC 547 or PN2222A is used basically to increase the sensitivity.In place of led just connect IC um 66(melody IC). Applications: In homes, of course. This can be specially used in places like hospitals, when patients need to call doctor by himself.