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

How to Use Break Beam Receiver: Examples, Pinouts, and Specs

Image of Break Beam Receiver
Cirkit Designer LogoDesign with Break Beam Receiver in Cirkit Designer

Introduction

The Break Beam Receiver (Manufacturer Part ID: 2168) by Adafruit Industries is a sensor designed to detect the interruption of a beam of light. It is commonly used in conjunction with a paired infrared (IR) emitter to create a "break beam" system. When an object passes through the beam, the receiver detects the interruption, making it ideal for applications such as object detection, counting, and safety systems.

This component is widely used in automation, robotics, and security systems due to its reliability and ease of integration into electronic circuits.

Explore Projects Built with Break Beam Receiver

Use Cirkit Designer to design, explore, and prototype these projects online. Some projects support real-time simulation. Click "Open Project" to start designing instantly!
ESP32-Based Security System with RFID and Laser Tripwire
Image of CPE doorlock system: A project utilizing Break Beam Receiver in a practical application
This circuit is designed for a comprehensive security and access control system with motion detection, access via RFID, and a break-beam sensor. It includes a solenoid lock controlled by a relay, visual and audible alerts, and a robust power management system with solar and battery backup to ensure uninterrupted operation.
Cirkit Designer LogoOpen Project in Cirkit Designer
Multi-Channel Load Cell Measurement System with JYS60 Amplifiers and DAQ Integration
Image of Load Cell Circuit: A project utilizing Break Beam Receiver in a practical application
This is a multi-channel load cell measurement system with several JYS60 amplifiers connected to load cells for weight or force sensing. The amplified signals are directed to a DAQ system for data capture, and power is supplied through a barrel jack. Grounding is achieved via an AdaGator Side Black component.
Cirkit Designer LogoOpen Project in Cirkit Designer
ESP32-Based Security System with RFID and Laser Intrusion Detection
Image of CPE doorlock system upgrade: A project utilizing Break Beam Receiver in a practical application
This circuit is a security and access control system featuring motion detection, laser beam-break sensing, and RFID scanning, interfaced with a keypad and visual/audible indicators, powered by a solar-charged battery, and capable of controlling an electric lock via a relay.
Cirkit Designer LogoOpen Project in Cirkit Designer
Battery-Powered Bluetooth Audio Amplifier with PAM8403
Image of trip: A project utilizing Break Beam Receiver in a practical application
This circuit is a Bluetooth audio amplifier system powered by a 38.5V battery. It uses a 5V Bluetooth audio receiver to receive audio signals, which are then amplified by a PAM8403 amplifier and output to two speakers for stereo sound.
Cirkit Designer LogoOpen Project in Cirkit Designer

Explore Projects Built with Break Beam Receiver

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 CPE doorlock system: A project utilizing Break Beam Receiver in a practical application
ESP32-Based Security System with RFID and Laser Tripwire
This circuit is designed for a comprehensive security and access control system with motion detection, access via RFID, and a break-beam sensor. It includes a solenoid lock controlled by a relay, visual and audible alerts, and a robust power management system with solar and battery backup to ensure uninterrupted operation.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of Load Cell Circuit: A project utilizing Break Beam Receiver in a practical application
Multi-Channel Load Cell Measurement System with JYS60 Amplifiers and DAQ Integration
This is a multi-channel load cell measurement system with several JYS60 amplifiers connected to load cells for weight or force sensing. The amplified signals are directed to a DAQ system for data capture, and power is supplied through a barrel jack. Grounding is achieved via an AdaGator Side Black component.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of CPE doorlock system upgrade: A project utilizing Break Beam Receiver in a practical application
ESP32-Based Security System with RFID and Laser Intrusion Detection
This circuit is a security and access control system featuring motion detection, laser beam-break sensing, and RFID scanning, interfaced with a keypad and visual/audible indicators, powered by a solar-charged battery, and capable of controlling an electric lock via a relay.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of trip: A project utilizing Break Beam Receiver in a practical application
Battery-Powered Bluetooth Audio Amplifier with PAM8403
This circuit is a Bluetooth audio amplifier system powered by a 38.5V battery. It uses a 5V Bluetooth audio receiver to receive audio signals, which are then amplified by a PAM8403 amplifier and output to two speakers for stereo sound.
Cirkit Designer LogoOpen Project in Cirkit Designer

Technical Specifications

The following are the key technical details for the Break Beam Receiver:

General Specifications

  • Manufacturer: Adafruit Industries
  • Part ID: 2168
  • Operating Voltage: 3.3V to 5V DC
  • Current Consumption: ~20mA
  • Detection Range: Up to 50cm (depending on the paired emitter and environmental conditions)
  • Output Type: Digital (Active Low)
  • Response Time: <1ms
  • Operating Temperature: -25°C to 85°C
  • Dimensions: 10mm x 8mm x 5mm (approximate)

Pin Configuration and Descriptions

The Break Beam Receiver has three pins for easy integration into circuits. The pinout is as follows:

Pin Name Description
1 VCC Power supply input (3.3V to 5V DC). Connect to the positive voltage source.
2 GND Ground. Connect to the ground of the circuit.
3 OUT Digital output. Outputs LOW when the beam is interrupted, HIGH otherwise.

Usage Instructions

How to Use the Break Beam Receiver in a Circuit

  1. Power the Receiver: Connect the VCC pin to a 3.3V or 5V DC power source and the GND pin to the ground of your circuit.
  2. Connect the Output: Attach the OUT pin to a digital input pin of your microcontroller or to another circuit element (e.g., an LED or buzzer) to monitor the output signal.
  3. Pair with an IR Emitter: Position the paired IR emitter directly opposite the receiver, ensuring the beam is aligned. The receiver will detect interruptions in the beam caused by objects passing through.
  4. Monitor the Output: The OUT pin will output a LOW signal when the beam is interrupted and a HIGH signal when the beam is unobstructed.

Important Considerations and Best Practices

  • Alignment: Ensure proper alignment between the IR emitter and the receiver for optimal performance.
  • Ambient Light: Avoid placing the sensor in areas with excessive ambient IR light (e.g., direct sunlight) to minimize interference.
  • Distance: The detection range may vary depending on the strength of the IR emitter and environmental conditions. Test the setup to ensure reliable operation.
  • Pull-up Resistor: If the output signal is unstable, consider using a pull-up resistor on the OUT pin to stabilize the signal.

Example: Using the Break Beam Receiver with an Arduino UNO

Below is an example of how to connect and use the Break Beam Receiver with an Arduino UNO:

Circuit Connections

  • VCC: Connect to the 5V pin on the Arduino.
  • GND: Connect to the GND pin on the Arduino.
  • OUT: Connect to digital pin 2 on the Arduino.

Arduino Code

// Define the pin connected to the Break Beam Receiver's OUT pin
const int breakBeamPin = 2;

void setup() {
  pinMode(breakBeamPin, INPUT); // Set the pin as an input
  Serial.begin(9600);          // Initialize serial communication
}

void loop() {
  int beamState = digitalRead(breakBeamPin); // Read the state of the beam

  if (beamState == LOW) {
    // Beam is interrupted
    Serial.println("Beam interrupted! Object detected.");
  } else {
    // Beam is not interrupted
    Serial.println("Beam is clear.");
  }

  delay(100); // Small delay to avoid spamming the serial monitor
}

Notes on the Code

  • The breakBeamPin is set to digital pin 2, but you can change it to any other digital pin.
  • The code continuously monitors the state of the beam and prints the status to the serial monitor.

Troubleshooting and FAQs

Common Issues and Solutions

  1. The receiver does not detect interruptions.

    • Solution: Check the alignment between the IR emitter and receiver. Ensure they are directly facing each other.
    • Solution: Verify that the IR emitter is powered and functioning correctly.
  2. The output signal is unstable or noisy.

    • Solution: Add a pull-up resistor (e.g., 10kΩ) to the OUT pin to stabilize the signal.
    • Solution: Ensure the power supply is stable and free from noise.
  3. False triggers in bright environments.

    • Solution: Avoid direct sunlight or strong IR sources near the sensor.
    • Solution: Use an IR emitter with a higher intensity to improve signal strength.
  4. The detection range is too short.

    • Solution: Check the power and alignment of the IR emitter. A stronger emitter may be required for longer distances.

FAQs

  • Q: Can I use the Break Beam Receiver with a 3.3V microcontroller?
    A: Yes, the receiver operates at both 3.3V and 5V, making it compatible with most microcontrollers.

  • Q: What happens if the beam is partially blocked?
    A: The receiver may still detect the interruption, depending on the size and position of the obstruction.

  • Q: Can I use multiple Break Beam Receivers in the same project?
    A: Yes, you can use multiple receivers, but ensure each has a dedicated IR emitter and proper alignment.

  • Q: Is the receiver waterproof?
    A: No, the receiver is not waterproof. Use it in dry environments or enclose it in a protective housing for outdoor use.

By following this documentation, you can effectively integrate the Adafruit Break Beam Receiver (Part ID: 2168) into your projects for reliable object detection and counting applications.