• How to Place an Order

  • Store Pick Up

  • Request for Quotation/ International Sourcing

  • Order Status

Jumper Wire Single 20cm Robotics Bangladesh Quick view

Reference: RBD-1354

Jumper Wire Single 20cm

Length: 8 inches/20 CM (Long) Material: Copper Plated Pin Spacing: 2.54mm.

Price BDT 3
More
In-Stock
Choose Your Size Quick view

Reference: 0984

Heat Shrink Tube

Choose your desire Heat Sink Size from below: 

Price BDT 2
More
In-Stock
MIFARE Classic 1K RFID NFC Smart Card 13. Quick view

Reference: RBD-0351

MIFARE Classic 1K RFID NFC Smart Card 13.56MHz Printable

Contactless transmission of data and supply energy (no battery needed) Operating distance: Up to 100mm (depending on antenna geometry) RoboticsBD Operating frequency: 13.56MHz Data transfer: 106 kbit/s Data integrity: 16 Bit CRC, parity, bit coding bit counting Anticollision Typical ticketing transaction: <100 ms ( including backup management)...

Price BDT 33
More
Out of Stock
470 Ohm 1/4w - Pack of 5 Quick view

Reference: 0245

Kiloohm (KΩ) 1/4w Resistors - Pack of 5

Choose your desire Resistor value from below: 

Price BDT 5
More
In-Stock
Jumper Wire 40 Pcs Set 20cm Robotics Bangladesh Quick view

Reference: 0031

Jumper Wire 40 Pcs Set 20cm

3 Types Available (Please select from option) 1. Male to Male  2. Male to Female 3. Female-Female

Price BDT 100
More
In-Stock
Buzzer Quick view

Reference: 0766

Ohm (Ω) 1/4w Resistors - Pack of 5

Choose your desire Resistor value from below: 

Price BDT 5
More
In-Stock
5 mm Green LED (Pack of 5) Quick view

Reference: RBD-0768

5 mm Red LED (Pack of 5)

Size: 5mm Color: RED Head Shape: Round Lens Appearance: Transparent

Price BDT 5
More
In-Stock
Push Button Switch (2PIN) Robotics Bangladesh Quick view

Reference: RBD-0761

Push Button Switch (2PIN)

Breadboard friendly Mounting Style: Through Hole Mounting Direction: Vertical

Price BDT 5
More
In-Stock
Buzzer Quick view

Reference: RBD-0758

BC547 NPN Transistor

BC547 NPN DIP Transistor

Price BDT 4
More
In-Stock
Jumper Wire Single 30cm Robotics Bangladesh Quick view

Reference: 1353

Jumper Wire Single 30cm

Length: 12.5 inches/30 CM (Long) Material: Copper Plated Pin Spacing: 2.54mm.

Price BDT 5
More
In-Stock
All best sellers
  • New
IR Beam Interruption Sensor - LED 3mm - 0-50 cm
  • IR Beam Interruption Sensor - LED 3mm - 0-50 cm

IR Beam Interruption Sensor - LED 3mm - 0-50 cm

RBD-2661

The sensor reacts to an interruption in the beam of infrared light that is transmitted between the transmitter and receiver. When the beam is interrupted by another object, the receiver signals this event by lighting up. The module is equipped with a 3 mm IR LED with an illumination angle of 10°. Beam interruption systems are used e.g. in measuring gates.

BDT 450
Quantity
In Stock

20 items in stock
  • Store Pickup Available! Store Pickup Available!
  • Free Ship Over 5000 BDT Free Ship Over 5000 BDT
  • Quality Product Quality Product
  • No Warranty No Warranty
  • No Replacement No Replacement

Product Description: IR Beam Interruption Sensor - LED 3 mm - 0-50 cm

The sensorreacts to an interruptionof the beam of infrared lightthat is transmitted between thetransmitterandreceiver. When the beam is interrupted by another object, the receiver signals this event by lighting up. The module is equipped with a3 mm IR LEDwith an illumination angle of10°. Beam interruption systems are used e.g. in measuring gates.

Specifications of the beam interruption sensor

  • Supply voltage: 3.3 V to 5 V
  • Range: 0 cm to 50 cm
  • Diode: 3 mm IR LED
  • Illumination angle: 10°
  • Response time: up to 2 ms
  • Output: open collector

    Wiring these sensors for Arduino use is really easy.

    First up you'll need to power the transmitter. Connect the black wire to ground and the red wire directly to 3.3V or 5V power. It will draw 9mA from 3.3V (lower power) and 20mA from 5V (better range)

    Next up you'll want to connect up the receiver. Connect the black wire to ground, the red wire to 3.3V or 5V (whichever logic level you like) and then the white or yellow wire to your digital input.

    Note that you do not have to share power supply ground or power between the two, the 'signal' is sent optically.

    The receiver is open collector which means that you do need a pull up resistor. Most microcontrollers have the ability to turn on a built in pull up resistor. If you do not, connect a 10K resistor between the white wire of the receiver and the red wire.

    On an Arduino, we'll connect the signal (yellow/white) pin to Digital #4

    sensors_Irbreak.jpg

    Run this demo code on your Arduino

    /* 
      IR Breakbeam sensor demo!
    */
    
    #define LEDPIN 13
      // Pin 13: Arduino has an LED connected on pin 13
      // Pin 11: Teensy 2.0 has the LED on pin 11
      // Pin  6: Teensy++ 2.0 has the LED on pin 6
      // Pin 13: Teensy 3.0 has the LED on pin 13
    
    #define SENSORPIN 4
    
    // variables will change:
    int sensorState = 0, lastState=0;         // variable for reading the pushbutton status
    
    void setup() {
      // initialize the LED pin as an output:
      pinMode(LEDPIN, OUTPUT);      
      // initialize the sensor pin as an input:
      pinMode(SENSORPIN, INPUT);     
      digitalWrite(SENSORPIN, HIGH); // turn on the pullup
      
      Serial.begin(9600);
    }
    
    void loop(){
      // read the state of the pushbutton value:
      sensorState = digitalRead(SENSORPIN);
    
      // check if the sensor beam is broken
      // if it is, the sensorState is LOW:
      if (sensorState == LOW) {     
        // turn LED on:
        digitalWrite(LEDPIN, HIGH);  
      } 
      else {
        // turn LED off:
        digitalWrite(LEDPIN, LOW); 
      }
      
      if (sensorState && !lastState) {
        Serial.println("Unbroken");
      } 
      if (!sensorState && lastState) {
        Serial.println("Broken");
      }
      lastState = sensorState;
    }

    With the above wiring, when you put you hand between the sensor pair, the onboard LED will turn on and the serial console will print out messages:

    sensors_breakserial.png

What is the price of IR Beam Interruption Sensor - LED 3mm - 0-50 cm in Bangladesh?

The latest price of IR Beam Interruption Sensor - LED 3mm - 0-50 cm in Bangladesh is BDT 450 You can buy the IR Beam Interruption Sensor - LED 3mm - 0-50 cm at best price from our RoboticsBD or visit RoboticsBD Office.

Please note that the product information provided on our website may not be entirely accurate as it is collected from various sources on the web. While we strive to provide the most up-to-date information possible, we cannot guarantee its accuracy. We recommend that you always read the product labels, warnings, and directions before using any product.

Product Images are shown for illustrative purposes only and may differ from the actual product.

Product Details
RBD-2661
20 Items
30 other products in the same category:
ENS160 AHT21 Carbon Dioxide CO2 eCO2 TVOC Air Quality Temperature & Humidity Sensor Robotics Bangladesh Quick view

Reference: RBD-2508

ENS160 AHT21 Carbon Dioxide CO2 eCO2 TVOC Air Quality Temperature & Humidity Sensor

The ENS160 is a digital multi-gas sensor specifically designed for indoor air quality testing that optimizes the detection of a wide variety of gases and volatile organic compounds (VOCS), including toluene, hydrogen, ethanol, N02 and ozone. The air quality sensor is used in home and building automation, consumer products, electrical and air purification

Price BDT 990
More
In Stock
UART EM4100 RFID Card Reader RDM6300 Robotics Bangladesh Quick view

Reference: RBD-0915

UART EM4100 RFID Card Reader RDM6300

Maximum effective distance up to 150mm Less than 100ms decoding time Support external antenna Uart interface Support EM4100 compatible read-only or read/write tags Small outline design

Price BDT 415
More
In-Stock
Voice Recognition Module Kit V3 (Elechouse) Robotics Bangladesh Quick view

Reference: RBD-0550

Voice Recognition Module Kit V3 (Elechouse)

Supply Voltage: 4.5 – 5.5 V. Current : <40 mA. Digital Interface : 5V TTL level for UART interface and GPIO. Support maximum 80 voice commands, with each voice 1500ms (one or two words speaking). Maximum 7 voice commands effective at same time. Arduino library is supplied. User-control General Pin Output. RoboticsBD

Price BDT 2,890
More
In-Stock
CJMCU-3216 AP3216 Digital Optical Proximity Sensor Robotics Bangladesh Quick view

Reference: RBD-2231

CJMCU-3216 AP3216 Digital Optical Proximity Sensor

Working voltage:2.8-3.8V ALS, IR LED and Proximity Detector in an Optical Module; Ambient Light Sensing (ALS); Approximates Human Eye Response; Programmable Interrupt Function with Upper and Lower Threshold; Up to 16-Bit Resolution; High Sensitivity Operates Behind Darkened Glass; Low Lux Performance at 0.01 lux;

Price BDT 450
More
In-Stock
MLX90640BAB 32*24 Thermal Imager Array Temperature Sensor Module Robotics Bangladesh Quick view

Reference: RBD-2385

MLX90640BAB 32*24 Thermal Imager Array Temperature Sensor Module

Module for measuring infrared temperature Uses the GY-MCU90640 MLX90640 BAA 32*24 dot matrix sensor Field of view angle of 55*34 degrees Ambient temperature range of -40 to 85 degrees Target temperature range of -40 to 300 degrees Serial output frequency supports up to 16HZ baud rate 460800

Price BDT 8,990
More
In-Stock
PM2.5 Air Quality Sensor PMS5003 High Precision Digital Output Module Robotics Bangladesh Quick view

Reference: RBD-1716

PM2.5 Air Quality Sensor PMS5003 High Precision Digital Output Module

Working Voltage: 5.0V Maximum Working Current: 100mA Data Interface Level: L<0.8V, H>2.7V, maximum voltage level 3.3V Particle Measurement Range: 0.3 ~ 1.0μm; 1.0 ~ 2.5μm; 2.5 ~ 10μm Note: Please purchase this adapter board to use it with Arduino and Raspberry Pi. 

Price BDT 2,990
More
In-Stock
Omron Proximity Sensor Switch E2E-X5MF2-Z Robotics Bangladesh Quick view

Reference: RBD-0492

Omron Proximity Sensor Switch E2E-X5MF2-Z

Proximity-sensing / Diffuse Type Voltage: DC 6-36V Current: 300mA Sensory Distance: 5mm

Price BDT 1,299
More
In-Stock
CJMCU-4541 MICS-4514 Carbon Monoxide Nitrogen Oxygen Sensor CO/NO2/H2/NH3/CH4 Robotics Bangladesh Quick view

Reference: RBD-1377

CJMCU-4541 MICS-4514 Carbon Monoxide Nitrogen Oxygen Sensor CO/NO2/H2/NH3/CH4

Module Name:CJMCU-4541 Sensor: MICS-4514 Type: Carbon Monoxide Nitrogen Oxygen Sensor

Price BDT 3,350
More
In-Stock
GY-ML8511 Ultraviolet Light UV Sensor Module Quick view

Reference: RBD-0357

GY-ML8511 Ultraviolet Light UV Sensor Module

Operating voltage (VCC): 3 V to 5V Operating current: 120μA (typical) 190μA (max) Operating Temperature: -40°C ~ +85°C Photodiode sensitive to UV-A and UV-B Embedded operational amplifier Analog voltage output Low supply current (300uA type) and low standby current (0.1uA type) RoboticsBD

Price BDT 410
More
In-Stock
Current Sensor ACS712-5A Robotics Bangladesh Quick view

Reference: RBD-1174

Current Sensor ACS712-5A

Low-noise analog signal path. Device bandwidth is set via the new FILTER pin. 5 µs output rise time in response to step input current. Small footprint, low-profile SOIC8 package. 2.1 kV RMS minimum isolation voltage from pins 1-4 to pins 5-8.

Price BDT 184
More
In-Stock
20mm Piezo Ceramic Elements Sound Sensor Robotics Bangladesh Quick view

Reference: RBD-2236

20mm Piezo Ceramic Elements Sound Sensor

Plate Diameter: 20mm Element Diameter: 14mm Plate Thickness: .42mm Lead Length: ~50mm Plate Material: Brass Resonant Frequency (kHz): 6.3 +/- .6kHz

Price BDT 50
More
In-Stock
5mm Infrared Emitter and Detector Robotics Bangladesh Quick view

Reference: RBD-2332

5mm Infrared Emitter and Detector

Infrared Photodiode Transmitter 5mm Infrared Photodiode Receiver 5mm

Price BDT 18
More
In-Stock
US-015 Ultrasonic Module Distance Measuring Transducer Sensor Quick view

Reference: RBD-0315

US-015 Ultrasonic Module Distance Measuring Transducer Sensor

Working voltage: DC 5 V Static current: 3 mA Working temperature: 0 ~ + 70° Output way: GPIO Induction Angle: Less than 15° Detection range:2 cm to 400 cm Detecting precision: 0.3 cm + 1% Sensor size: Approx. 45 x 20 x 1.6mm Hole diameter: Approx. 1mm. RoboticsBD

Price BDT 390
More
In-Stock
Infrared Line Track Tracker Follower Sensor Robotics Bangladesh Quick view

Reference: RBD-0693

Infrared Line Track Tracker Follower Sensor

Operating Voltage: 3-5.5V Supply Current: ≥ 20mA Optimal Sensing Distance: 3mm Working voltage of 5V, the output of the black line low, white line of high output Uses Infrared Light to Detect Anti-Interference Ability Sensors to adopt TCRT5000 High Sensitivity, Stable Performance Exquisite workmanship, with the indicator Has a fixed bolt hole for easy...

Price BDT 150
More
In-Stock
GY- BMI160 6DOF Gravity Accelerometer Sensor Quick view

Reference: RBD-0700

GY- BMI160 6DOF Gravity Accelerometer Sensor

Operating Voltage: 3.3V-5.5V Low Power Consumption High Accuracy Small Size

Price BDT 390
More
In-Stock
Honeywell HMC5983 Temperature Compensated Three-Axis Digital Compass Robotics Bangladesh Quick view

Reference: RBD-0574

Honeywell HMC5983 Temperature Compensated Three-Axis Digital Compass

3-Axis Magnetoresistive Sensors and ASIC in a 3.0x3.0x0.9mm LCC Surface Mount Package Temperature Compensated Data Output and Temperature Output Automatic Offset Compensation. RoboticsBD

Price BDT 949
More
In-Stock
U-Blox NEO-6M GPS Module Quick view

Reference: RBD-0797

U-Blox NEO-6M GPS Module

5Hz position update rate. The cold start time of 38 s and Hot start time of 1 s. Configurable from 4800 Baud to 115200 Baud rates. (default 9600). SuperSense ® Indoor GPS: -162 dBm tracking sensitivity. Support SBAS (WAAS, EGNOS, MSAS, GAGAN). Separated 18 x 18mm GPS antenna. RoboticsBD In recent years 2022, due to a shortage of chips, some of the GPS...

Price BDT 599
More
In-Stock
Sound Sensor Module for Arduino Quick view

Reference: RBD-0291

Sound Sensor Module for Arduino

Main chip: LM393, Electret condenser microphone Working voltage: DC 3.3-5V Induction distance is 0.5M Signal output Indication Single channel signal output The output effective signal is low level.

Price BDT 69
More
In-Stock
Pyroelectric Infrared PIR Sensor Human Body Detecting PIR Motion Sensor Module Robotics Bangladesh Quick view

Reference: RBD-2364

Pyroelectric Infrared PIR Sensor Human Body Detecting PIR Motion Sensor Module

Pyroelectric Infrared Sensor Human Body Detecting PIR Motion Sensor Module for Arduino MCU 011050 Black Optical Lens

Price BDT 490
More
In Stock
MQ-5 Smoke Gas Detector Sensor Quick view

Reference: RBD-0674

MQ-5 Smoke Gas Detector Sensor

Model: MQ-5 Operating Voltage: 5V DC Operating Temparature:-20~40 degree celcius

Price BDT 195
More
In-Stock
Smart Sensor AR320 Infrared Thermometer Robotics Bangladesh Quick view

Reference: RBD-1383

Smart Sensor AR320 Infrared Thermometer

Laser Pointer for Accurate Temperature Reading | Auto Data Hold Temperature Measurement Range: -32℃ ~ 320℃ (-26℉ ~ 608℉) Accuracy: ±2℃ / ±2% | Resolution: 0.1℃ or 0.1℉ Response Time & Wavelength: 500ms & (8-14)um | Distance Spot Ratio 12:1 Automatic Data Hold | Auto Shut Off | Rubberized Handle for Grip and Low Impact Resistance

Price BDT 3,699
More
In-Stock
Non-invasive AC current Sensor Split Core Current Transformer SCT-013-050 50A Robotics Bangladesh Quick view

Reference: RBD-1835

Non-invasive AC current Sensor Split Core Current Transformer SCT-013-050 50A

Input current (RMS): 50A. Work temperature: -25℃~+70℃. Storage temperature: -30℃~+90℃. Work voltage: 660V. Frequency range: 50Hz-1KHz.

Price BDT 780
More
In-Stock
Reed Switch Module Robotics Bangladesh Quick view

Reference: RBD-1914

Reed Switch Module

Working voltage 3.3V-5 Output format: digital switching output (0 and 1)A fixed bolt holes for easy installation

Price BDT 170
More
In-Stock
TFMini - Micro LiDAR Module Robotics Bangladesh Quick view

Reference: RBD-1201

TFMini - Micro LiDAR Module

Measurement range: 12 m. Operating Voltage: 5V. Power : 0.12w. Weight: 6 gm. Compatible with Pixhawk Controller. Frequency: 100Hz

Price BDT 7,990
More
In-Stock
Resistive Film Pressure Sensor Module Pin Header Analog Signal 200mm Robotics Bangladesh Quick view

Reference: RBD-1854

Resistive Film Pressure Sensor Module Pin Header Analog Signal 200mm

This module is compatible with various microcontroller control boards, such as arduino series microcontrollers. The module contains 2 kinds of interfaces. The module comes with a 20cm wire, which is long enough for your use. It has a short response time and quick response.

Price BDT 590
More
In-Stock
On sale! Formaldehyde/ Formalin Detection Sensor Quick view

Reference: RBD-0431

Formaldehyde/ Formalin Detection Sensor CJMCU-1100 MS1100

Working temperature : -10℃ ~ 50℃ Working humidity : below saturation point Storage temperature : -20℃ ~ 80℃ RoboticsBD

Price BDT 1,990
More
In-Stock
HC-020K Speed Measuring Module With Speed Encoder Kit Robotics Bangladesh Quick view

Reference: RBD-0355

HC-020K Speed Measuring Module With Speed Encoder Kit

Description:Working voltage: 4.5V to 5.5 V.Transmit tube pressure drop: Vf = 1.6 VTransmit tube current: 20 mASignal output: A, B two way; The TTL levelDistinguish precision: 0.01 mmMeasurement frequency, 100 KHZEncoder diameter: 24 mmEncoder type D hole diameter: 4 mmThe encoder resolution: 20 line

Price BDT 350
More
In-Stock
ISL29125 RGB Color Light Sensor Module 3. Quick view

Reference: RBD-2363

ISL29125 RGB Color Light Sensor Module 3.3V

This module is based on ISL29125 that is a low power, high sensitivity, RED, GREEN and BLUE color light sensor (RGB) with an I2C (SMBus compatible) interface. Its state-of-the-art photodiode array provides an accurate RGB spectral response and excellent light source to light source variation (LS2LS). 

Price BDT 1,490
More
In Stock
SHARP Distance Measuring Sensor GP2Y0A710K0F Robotics Bangladesh Quick view

Reference: RBD-1204

SHARP Distance Measuring Sensor GP2Y0A710K0F

Distance measuring range: 100 cm to 550 cm Output type: Analog voltage Output voltage differential over distance range: 2.05 V (typical) Update period: 38 ± 10 ms

Price BDT 1,999
More
In-Stock
Optical Endstop Switch with 1m Cable Robotics Bangladesh Quick view

Reference: RBD-2444

Optical Endstop Switch with 1m Cable

Designed for use as an endstop for 3D printers but it can be used for other IR beam interrupter purposes as well.

Price BDT 350
More
In Stock