Stufin
Home Quick Cart Profile

IR Illuminator for Raspberry Pi NoIR Camera

Buy Now on Stufin

Component Name

IR Illuminator for Raspberry Pi NoIR Camera

Overview

The IR Illuminator for Raspberry Pi NoIR Camera is a specialized component designed to enhance the night vision capabilities of the Raspberry Pi NoIR Camera. This add-on module provides a focused beam of infrared light, allowing the camera to capture high-quality images in low-light or complete darkness.

Functionality

The IR Illuminator for Raspberry Pi NoIR Camera is specifically designed to work in conjunction with the Raspberry Pi NoIR Camera, which is a variant of the Raspberry Pi camera module without an infrared filter. The IR Illuminator module emits a concentrated beam of infrared light, which is then detected by the camera sensor, enabling it to capture images in low-light environments. This allows the camera to "see" in the dark, making it ideal for applications such as

Surveillance and security systems

Wildlife monitoring and tracking

Nighttime robotics and automation

Low-light industrial inspections

Key Features

  • Infrared Illumination: The IR Illuminator emits a focused beam of infrared light with a wavelength of 850nm, which is optimized for use with the Raspberry Pi NoIR Camera.
  • Adjustable Beam Angle: The IR Illuminator features an adjustable beam angle, allowing users to fine-tune the spread of the infrared beam to suit their specific application.
  • High-Power LEDs: The module utilizes high-power infrared LEDs, ensuring a strong and consistent light output.
  • Low Power Consumption: The IR Illuminator is designed to operate at a low power consumption of approximately 200mA, making it suitable for battery-powered applications.
  • Compact Design: The module is compact and lightweight, making it easy to integrate into a wide range of projects and systems.
  • Easy Installation: The IR Illuminator is designed for easy installation and can be connected directly to the Raspberry Pi NoIR Camera using a supplied cable.
  • Compatibility: The IR Illuminator is specifically designed for use with the Raspberry Pi NoIR Camera and is compatible with all Raspberry Pi models.

Operating Voltage

5V

Power Consumption

Approximately 200mA

Infrared Wavelength

850nm

Beam Angle

Adjustable (20 to 60)

LED Type

High-Power Infrared LEDs

Dimensions

35mm x 25mm x 15mm

Weight

Approximately 20g

Installation and Use

The IR Illuminator for Raspberry Pi NoIR Camera is easy to install and use. Simply connect the module to the Raspberry Pi NoIR Camera using the supplied cable, adjust the beam angle as needed, and power the module using a 5V power source. The IR Illuminator is then ready to use, providing a reliable and consistent source of infrared light for your camera-based projects.

Pin Configuration

  • IR Illuminator for Raspberry Pi NoIR Camera Documentation
  • The IR Illuminator is a compatible accessory for the Raspberry Pi NoIR Camera, designed to provide additional infrared lighting for enhanced night vision capabilities. This documentation explains the pinout and connection guide for the IR Illuminator.
  • Pinout Description:
  • The IR Illuminator has a total of 4 pins, which are used to connect to the Raspberry Pi board. Here's a breakdown of each pin:
  • Pin 1: VCC (Power Supply)
  • --------------------------------
  • Function: Power supply pin for the IR Illuminator
  • Voltage: 3.3V or 5V (compatible with Raspberry Pi's power supply)
  • Description: Connect to the Raspberry Pi's 3.3V or 5V power supply pin to power the IR Illuminator.
  • Pin 2: GND (Ground)
  • -------------------------
  • Function: Ground pin for the IR Illuminator
  • Description: Connect to the Raspberry Pi's GND pin to provide a common ground reference for the IR Illuminator.
  • Pin 3: SDA (Serial Data)
  • ---------------------------
  • Function: Serial data pin for I2C communication
  • Description: Not used for the IR Illuminator, as it does not require I2C communication. Leave this pin unconnected.
  • Pin 4: SCL (Serial Clock)
  • ---------------------------
  • Function: Serial clock pin for I2C communication
  • Description: Not used for the IR Illuminator, as it does not require I2C communication. Leave this pin unconnected.
  • Connection Guide:
  • To connect the IR Illuminator to the Raspberry Pi, follow these steps:
  • 1. Connect Pin 1 (VCC) to Raspberry Pi's 3.3V or 5V power supply pin: This will power the IR Illuminator.
  • 2. Connect Pin 2 (GND) to Raspberry Pi's GND pin: This will provide a common ground reference for the IR Illuminator.
  • Important Notes:
  • Make sure to connect the IR Illuminator's power supply pin (VCC) to the correct voltage source on the Raspberry Pi (either 3.3V or 5V).
  • Ensure a secure connection between the IR Illuminator and the Raspberry Pi to prevent damage to either component.
  • The IR Illuminator does not require any additional configuration or software setup, as it is a simple power-driven component.
  • By following these guidelines, you can successfully connect the IR Illuminator to your Raspberry Pi NoIR Camera and enhance your night vision capabilities.

Code Examples

IR Illuminator for Raspberry Pi NoIR Camera Documentation
Overview
The IR Illuminator for Raspberry Pi NoIR Camera is a specialized infrared LED array designed to work in conjunction with the Raspberry Pi NoIR Camera module. This component enhances the camera's ability to capture images in low-light environments, making it ideal for various IoT applications such as surveillance, robotics, and computer vision projects.
Technical Specifications
Infrared wavelength: 850nm
 Power consumption: 500mA @ 5V
 Dimensions: 25mm x 25mm x 10mm
 Compatibility: Raspberry Pi NoIR Camera module (V1 and V2)
Connecting the IR Illuminator to Raspberry Pi
To use the IR Illuminator with your Raspberry Pi, follow these steps:
1. Connect the IR Illuminator to the Raspberry Pi's GPIO pins:
	 GND (Ground) to Pin 6 (GND)
	 VCC (5V) to Pin 2 (5V)
	 IR LED Cathode (-) to Pin 17 (GPIO 17)
	 IR LED Anode (+) to Pin 23 (GPIO 23)
2. Ensure the Raspberry Pi NoIR Camera module is properly connected to the Raspberry Pi.
Example Code: Enabling the IR Illuminator using Python
Example 1: Simple On/Off Control
This example demonstrates how to turn the IR Illuminator on and off using Python:
```python
import RPi.GPIO as GPIO
import time
# Set up GPIO mode
GPIO.setmode(GPIO.BCM)
# Set up the IR Illuminator pins
GPIO.setup(17, GPIO.OUT)  # IR LED Cathode (-)
GPIO.setup(23, GPIO.OUT)  # IR LED Anode (+)
try:
    while True:
        # Turn the IR Illuminator on
        GPIO.output(17, GPIO.HIGH)
        GPIO.output(23, GPIO.HIGH)
        print("IR Illuminator on")
        time.sleep(2)
# Turn the IR Illuminator off
        GPIO.output(17, GPIO.LOW)
        GPIO.output(23, GPIO.LOW)
        print("IR Illuminator off")
        time.sleep(2)
except KeyboardInterrupt:
    GPIO.cleanup()
```
Example 2: Capturing Images with the IR Illuminator using OpenCV
This example demonstrates how to capture images using the Raspberry Pi NoIR Camera module with the IR Illuminator enabled, using OpenCV:
```python
import cv2
import RPi.GPIO as GPIO
import time
# Set up GPIO mode
GPIO.setmode(GPIO.BCM)
# Set up the IR Illuminator pins
GPIO.setup(17, GPIO.OUT)  # IR LED Cathode (-)
GPIO.setup(23, GPIO.OUT)  # IR LED Anode (+)
# Initialize the camera
cap = cv2.VideoCapture(0)
try:
    while True:
        # Turn the IR Illuminator on
        GPIO.output(17, GPIO.HIGH)
        GPIO.output(23, GPIO.HIGH)
# Capture an image
        ret, frame = cap.read()
        if ret:
            cv2.imshow('Image', frame)
            cv2.waitKey(1)
# Turn the IR Illuminator off
        GPIO.output(17, GPIO.LOW)
        GPIO.output(23, GPIO.LOW)
except KeyboardInterrupt:
    cap.release()
    cv2.destroyAllWindows()
    GPIO.cleanup()
```
These examples demonstrate the basic usage of the IR Illuminator for Raspberry Pi NoIR Camera. You can adapt and build upon this code to suit your specific IoT project requirements.