The Break Beam Emitter (Manufacturer Part ID: 2168) by Adafruit Industries is a sensor that emits a beam of infrared light. This beam, when paired with a compatible receiver, can detect interruptions caused by objects passing through it. The emitter is a key component in break beam systems, which are widely used for object detection, counting, and safety mechanisms.
The following table outlines the key technical details of the Break Beam Emitter:
Parameter | Value |
---|---|
Operating Voltage | 3.3V to 5V |
Current Consumption | ~20mA |
Wavelength | Infrared (typically 940nm) |
Beam Range | Up to 50cm (depending on receiver) |
Dimensions | 10mm x 10mm x 30mm |
Operating Temperature | -25°C to 85°C |
The Break Beam Emitter has two pins for connection. The table below describes the pinout:
Pin | Name | Description |
---|---|---|
1 | VCC | Power supply input (3.3V to 5V) |
2 | GND | Ground connection |
VCC
pin to a 3.3V or 5V power source and the GND
pin to the ground of your circuit.Below is an example of how to use the Break Beam Emitter with a compatible receiver and an Arduino UNO to detect beam interruptions:
// Example code for using a Break Beam Emitter with an Arduino UNO
// This code assumes a compatible receiver is connected to pin 2 of the Arduino
#define RECEIVER_PIN 2 // Digital pin connected to the receiver output
void setup() {
pinMode(RECEIVER_PIN, INPUT); // Set the receiver pin as input
Serial.begin(9600); // Initialize serial communication
Serial.println("Break Beam Sensor Test");
}
void loop() {
int beamStatus = digitalRead(RECEIVER_PIN); // Read the receiver's output
if (beamStatus == HIGH) {
// Beam is uninterrupted
Serial.println("Beam is clear");
} else {
// Beam is interrupted
Serial.println("Beam interrupted!");
}
delay(100); // Small delay for stability
}
RECEIVER_PIN
(pin 2 in this example).The receiver does not detect the beam:
False detections or inconsistent operation:
Short detection range:
The emitter gets warm:
Q: Can I use the Break Beam Emitter with a different receiver?
A: Yes, as long as the receiver is compatible with the emitter's wavelength (typically 940nm) and operating range.
Q: What is the maximum range of the emitter?
A: The range depends on the receiver's sensitivity and environmental conditions. Typically, it can reach up to 50cm.
Q: Can I use multiple emitters in the same system?
A: Yes, but ensure that the beams do not interfere with each other. Use physical separation or modulation techniques to avoid cross-talk.
Q: Is the emitter waterproof?
A: No, the emitter is not waterproof. Use appropriate enclosures for outdoor or wet environments.
This documentation provides a comprehensive guide to using the Adafruit Break Beam Emitter (Part ID: 2168). For further assistance, refer to Adafruit's official resources or community forums.