• Banner

    R503 Waterproof Capacitive Fingerprint Module Sensor Scanner Robotics Bangladesh
    • R503 Waterproof Capacitive Fingerprint Module Sensor Scanner Robotics Bangladesh
    • R503 Waterproof Capacitive Fingerprint Module Sensor Scanner Robotics Bangladesh
    • R503 Waterproof Capacitive Fingerprint Module Sensor Scanner Robotics Bangladesh
    • R503 Waterproof Capacitive Fingerprint Module Sensor Scanner Robotics Bangladesh

    R503 Waterproof Capacitive Fingerprint Module Sensor Scanner

    RBD-2552

    • Waterproof R503 Capacitive Fingerprint Sensor with LED indicator
    • Stores up to 200 unique fingerprints for reliable access control
    • Wide detection range with high accuracy and fast response time
    • Easy installation with nut design and 6-pin interface (Tx, Rx, VCC, GND, etc.)
    • Compatible with Arduino, ESP32, PIC, and other microcontroller platforms
    • Ideal for security, attendance, and biometric access applications
    BDT 2,990
    BDT 2,990 BDT 2,990 BDT 2,990 BDT 2,990
    Tax excluded Tax includedTax excludedTax includedTax excluded
    BDT 2,990 Tax excluded
    BDT 2,990 Tax included
    BDT 0 Tax
    BDT 2,990 Tax excluded
    BDT 0 Tax
    BDT 2,990 Tax included
    Quantity
    In-Stock
    5 Items

    5 people have purchased this item
    Only 5 items left in stock
    Description

    The R503 Waterproof Capacitive Fingerprint Module Sensor Scanner is a compact and efficient biometric solution designed for security and access control systems. Capable of storing up to 200 unique fingerprints, this module ensures accurate and quick recognition through its advanced capacitive touch panel. It features a built-in configurable LED indicator for status feedback, including enrollment success, errors, and access confirmation. With a simple 6-pin interface supporting power, finger detection signal, and UART communication (Tx/Rx), the R503 can be easily integrated with Arduino, ESP32, PIC, and other microcontroller boards. Its durable, waterproof build makes it suitable for both indoor and outdoor use, while the included mounting nut ensures easy installation. Perfect for attendance systems, smart locks, and custom security projects, this fingerprint sensor provides a reliable and user-friendly solution for modern biometric applications. Featured By RoboticsBD.

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

    RoboticsBD RoboticsBD RoboticsBD RoboticsBD RoboticsBD RoboticsBD RoboticsBD RoboticsBD RoboticsBD RoboticsBD 

    Features:

    1. High Accuracy Recognition – Capacitive sensor ensures precise fingerprint detection.

    2. 200 Fingerprint Capacity – Stores multiple unique users for shared access systems.

    3. Waterproof Design – Reliable operation in various environmental conditions.

    4. Configurable LED Indicator – Provides real-time feedback on fingerprint status.

    5. Simple Integration – UART interface supports Arduino, ESP32, PIC, and other boards.

    6. Compact & Easy to Mount – Includes nut for stable installation.

    7. Low Power Consumption – Efficient for embedded and portable projects.

    RoboticsBD RoboticsBD RoboticsBD RoboticsBD RoboticsBD RoboticsBD RoboticsBD RoboticsBD RoboticsBD RoboticsBD 

    Applications:

    1. Access Control Systems – Smart door locks, safes, and restricted entry zones.

    2. Attendance Tracking – Biometric employee or student attendance systems.

    3. IoT Security Projects – Integration with ESP32 or Arduino for custom security.

    4. Smart Home Automation – Control devices with fingerprint authentication.

    5. Industrial Security – Equipment protection and operator-level access.

    RoboticsBD RoboticsBD RoboticsBD RoboticsBD RoboticsBD RoboticsBD RoboticsBD RoboticsBD RoboticsBD RoboticsBD 

    General Specifications
    ModelR503 Capacitive Fingerprint Sensor
    Fingerprint CapacityUp to 200
    Communication InterfaceUART (Tx, Rx)
    Power Supply3.3V – 6V DC
    Detection MethodCapacitive Touch
    LED IndicatorConfigurable multi-color
    Pin Count6 (VCC, GND, Tx, Rx, Touch, Finger Detection)
    InstallationNut for easy mounting
    ApplicationsSecurity, access control, attendance, IoT
    WaterproofYes
    Shipment Weight0.0342 kg
    Shipment Dimensions (cm)5 × 3 × 3

    Please allow 5% measuring deviation due to manual measurement.

    RoboticsBD RoboticsBD RoboticsBD RoboticsBD RoboticsBD RoboticsBD RoboticsBD RoboticsBD RoboticsBD RoboticsBD 

    Documentation:

    ADDITIONAL INFORMATION

    How does the R503 Fingerprint Sensor work?

    The sensor generally works with two functions:

    • Fingerprint registration
    • Fingerprint reader

    When registering, the user must place their finger twice so that the module can process both images and generate a template to save it. In reader mode the system will generate another template and make a comparison with those already saved. The module works with a half-duplex serial protocol, so through a serial monitor you can send commands to change the color of the LED indicator, delete saved fingerprints, choose the record where to save, among others.

    Test R503 Sensor Dactyla

    In order to test the module, you need to install the library in the Arduino IDE Adafruit_Fingerprint,

    We will make the following connections on our Arduino Uno development board:

    Cables:

    • Red: 3.3V
    • Black: GND
    • Yellow: Pin 2
    • Coffee: Pin 3
    • Blue: N/A
    • White: 3.3V

    Later we will use the following code in our IDE to program our Arduino, this code records and saves the fingerprints detected by the sensor:

    #include <Adafruit_Fingerprint.h>
    
    #if (defined(__AVR__) || defined(ESP8266)) && !defined(__AVR_ATmega2560__)
    // For Arduino Uno or other devices without serial hardware, we must use serial software...
    // pin #2 is sensor input (Yellow Wire) 
    // pin #3 is arduino output (Brown Wire)
    SoftwareSerial mySerial(2, 3); //Serial port configuration for serial software
    #else
    // For Leonardo/M0/etc, others with serial hardware, use serial hardware!
    // #0 is the yellow wire, #1 is brown
    #define mySerial Serial1
    
    #endif
    
    Adafruit_Fingerprint finger = Adafruit_Fingerprint(&mySerial);
    
    uint8_t id;
    
    void setup()
    
    {
    Serial.begin(9600);
    while (!Serial); // Para Yun/Leo/Micro/Zero/...
    delay(100);
    Serial.println("nnAdafruit Fingerprint Registro de Huellas");
    
    // Configuring data transmission for the serial port
    finger.begin(57600);
    
    // Check connection with the sensor
    if (finger.verifyPassword()) {
       Serial.println(" Sensor encontrado!");
    } else {
      Serial.println("No se encontró sensor de huellas :(");
      while (1) { delay(1); }
    }
    
    // Reading sensor parameters
    Serial.println(F("Leyendo parámetros del sensor"));
    finger.getParameters();
    Serial.print(F("Estatus: 0x")); Serial.println(finger.status_reg, HEX);
    Serial.print(F("Sys ID: 0x")); Serial.println(finger.system_id, HEX);
    Serial.print(F("Capacidad: ")); Serial.println(finger.capacity);
    Serial.print(F("Nivel de Seguridad: ")); Serial.println(finger.security_level);
    Serial.print(F("Dirección del Dispositivo: ")); Serial.println(finger.device_addr, HEX);
    Serial.print(F("Longitud del paquete: ")); Serial.println(finger.packet_len);
    Serial.print(F("Rango de Baudios: ")); Serial.println(finger.baud_rate);
    }
    
    uint8_t readnumber(void) {
    uint8_t num = 0;
    
    while (num == 0) {
    while (! Serial.available());
    num = Serial.parseInt();
    }
    return num;
    }
    
    void loop() //Repeat over and over again
    {
    
    // Fingerprint registration address choice
    Serial.println("Ready to register fingerprint!"< a i=4>);
    Serial.println("Please write the ID # (of the 1 to 127) in which you want to register your fingerprint...");
    id = readnumber();
    if (id == 0) {// ID #0 not allowed, try again!
       return;
    }
    Serial.print("Registrando ID #");
    Serial.println(id);
    
    while (! getFingerprintEnroll() );
    }
    
    // Fingerprint registration
    uint8_t getFingerprintEnroll() {
    
    int p = -1;
    Serial.print("Esperando una huella valida para registrar en #"); Serial.println(id);
    while (p != FINGERPRINT_OK) {
      p = finger.getImage();
      switch (p) {
       case FINGERPRINT_OK:
         Serial.println("Imagen obtenida");
       break;
       case FINGERPRINT_NOFINGER:
         Serial.println(".");
       break;
       case FINGERPRINT_PACKETRECIEVEERR:
         Serial.println("Error de comunicación");
       break;
       case FINGERPRINT_IMAGEFAIL:
         Serial.println("Error de Imagen");
       break;
       default:
         Serial.println("Error desconocido");
       break;
      }
    }
    
    // OK Success!
    
    p = finger.image2Tz(1);
    switch (p) {
     case FINGERPRINT_OK:
       Serial.println("Imagen Convertida");
     break;
     case FINGERPRINT_IMAGEMESS:
       Serial.println("Imagen muy confusa");
     return p;
     case FINGERPRINT_PACKETRECIEVEERR:
       Serial.println("Error de comunicación");
     return p;
     case FINGERPRINT_FEATUREFAIL:
       Serial.println("No se pueden encontrar las caracteristicas de la huella");
     return p;
     case FINGERPRINT_INVALIDIMAGE:
       Serial.println("No se pueden encontrar las caracteristicas de la huella");
     return p;
     default:
       Serial.println("Error desconocido");
     return p;
    }
    
    // Get second fingerprint image
    Serial.println("Retira el dedo");
    delay(2000);
    p = 0;
    while (p != FINGERPRINT_NOFINGER) {
      p = finger.getImage();
    }
    Serial.print("ID "); Serial.println(id);
    p = -1;
    Serial.println("Coloca el mismo dedo otra vez");
    while (p != FINGERPRINT_OK) {
      p = finger.getImage();
    switch (p) {
     case FINGERPRINT_OK:
       Serial.println("Imagen obtenida");
     break;
     case FINGERPRINT_NOFINGER:
       Serial.print(".");
     break;
     case FINGERPRINT_PACKETRECIEVEERR:
       Serial.println("Error de comunicación");
     break;
     case FINGERPRINT_IMAGEFAIL:
       Serial.println("Error de imagen");
     break;
     default:
       Serial.println("Error desconocido");
     break;
    }
    }
    
    // OK Success!
    
    p = finger.image2Tz(2);
    switch (p) {
     case FINGERPRINT_OK:
       Serial.println("Imagen convertida");
     break;
     case FINGERPRINT_IMAGEMESS:
       Serial.println("Imagen muy confusa");
     return p;
     case FINGERPRINT_PACKETRECIEVEERR:
       Serial.println("Error de comunicación");
     return p;
    case FINGERPRINT_FEATUREFAIL:
       Serial.println("No se pueden encontrar las características de la huella");
    return p;
    case FINGERPRINT_INVALIDIMAGE:
      Serial.println("No se pueden encontrar las características de la huella");
    return p;
    default:
      Serial.println("Error desconocido");
    return p;
    }
    
    // OK converted!
    Serial.print("Creando el modelo para #"); Serial.println(id);
    
    p = finger.createModel();
    if (p == FINGERPRINT_OK) {
      Serial.println("Han coincidido las huellas!");
    } else if (p == FINGERPRINT_PACKETRECIEVEERR) {
      Serial.println("Error de comunicación");
      return p;
    } else if (p == FINGERPRINT_ENROLLMISMATCH) {
      Serial.println("Las huellas no coinciden");
      return p;
    } else {
      Serial.println("Error desconocido");
      return p;
    }
    
    Serial.print("ID "); Serial.println(id);
    p = finger.storeModel(id);
    if (p == FINGERPRINT_OK) {
      Serial.println("Guardado!");
    } else if (p == FINGERPRINT_PACKETRECIEVEERR) {
      Serial.println("Error de comunicación");
      return p;
    } else if (p == FINGERPRINT_BADLOCATION) {
      Serial.println("No se puede guardar en esa ubicación");
      return p;
    } else if (p == FINGERPRINT_FLASHERR) {
      Serial.println("Error de escritura en la memoria flash");
      return p;
    } else {
      Serial.println("Error desconocido");
      return p;
    }
    
    return true;
    }

    Remember that in order to view the operation of the code you must open the serial monitor:


    If you require more examples of use, for example to detect if the fingerprints are already saved, configure the LED indicator or delete fingerprint records, you can access the examples that the library has from here or from the Arduino IDE:

    Package Includes:

    1 x R503 Waterproof Capacitive Fingerprint Module Sensor Scanner

    RoboticsBD RoboticsBD RoboticsBD RoboticsBD RoboticsBD RoboticsBD RoboticsBD RoboticsBD RoboticsBD RoboticsBD 

    RoboticsBD RoboticsBD RoboticsBD RoboticsBD RoboticsBD RoboticsBD RoboticsBD RoboticsBD RoboticsBD RoboticsBD 

    Product Details
    RBD-2552
    5 Items

    Specific References

    EAN13
    2552
    Comments (0)
    Grade
    No customer reviews for the moment.
    16 other products in the same category:

    Reference: RBD-2324

    Brand: DFRobot

    Gravity Analog ORP Sensor Meter for Arduino

    (0)
    Gravity Analog ORP Sensor Meter for Arduino with a compact and easy-to-use design Measures Oxidation-Reduction Potential (ORP) in aqueous solutions within -2000mV to 2000mV range Features simple wiring and programming for seamless integration with Arduino Provides reliable water quality measurements for testing, aquaculture, and hydroponics Includes ORP...
    BDT 18,749 BDT 20,856
    BDT 20,856 BDT 18,749 tax incl.
    BDT 20,856 BDT 18,749 tax excl.
    BDT 20,856 BDT 18,749 tax excl.
    BDT 20,856 BDT 18,749 tax incl.
    BDT 20,856 BDT 18,749 tax incl.
    BDT 0 BDT 0 Tax
    BDT 20,856 BDT 18,749 tax excl.
    BDT 20,856 BDT 18,749 tax excl.
    BDT 0 BDT 0 Tax
    BDT 20,856 BDT 18,749 tax incl.
    More Gravity Analog ORP Sensor Meter for Arduino
    Last items in stock
    In stock: 1
    ADXL335 Module 3-axis Analog Output Accelerometer GY-61 Robotics Bangladesh ADXL335 Module 3-axis Analog Output Accelerometer GY-61 Robotics Bangladesh

    Reference: RBD-1913

    ADXL335 Module 3-axis Analog Output Accelerometer GY-61

    (0)
    Onboard LDO Voltage regulator Can be interfaced with 3V3 or 5V Microcontroller. Tap/Double Tap Detection Free-Fall Detection Analog output Build in ultra low noise linear LDO voltage regulator Built-in onboard filters, which reduce noise from the motor and other high current electronics Power LED
    BDT 630
    BDT 630 tax incl.
    BDT 630 tax excl.
    BDT 630 tax excl.
    BDT 630 tax incl.
    BDT 630 tax incl.
    BDT 0 Tax
    BDT 630 tax excl.
    BDT 630 tax excl.
    BDT 0 Tax
    BDT 630 tax incl.
    More ADXL335 Module 3-axis Analog Output Accelerometer GY-61
    In-Stock
    In stock: 71
    Industrial pH Electrode - Armor Casing Haoshi H101 Robotics Bangladesh Industrial pH Electrode - Armor Casing Haoshi H101 Robotics Bangladesh

    Reference: RBD-3244

    Brand: DFRobot

    Industrial pH Electrode - Armor Casing Haoshi H101

    (0)
    The Industrial pH Electrode - Armor Casing (H-101) is a high-performance pH combination electrode designed for precision and durability in industrial applications. It features a low-impedance sensitive glass membrane, ensuring fast response and excellent thermal stability. The electrode is robust, with a ring PTFE membrane that resists clogging, making it...
    BDT 7,350
    BDT 7,350 tax incl.
    BDT 7,350 tax excl.
    BDT 7,350 tax excl.
    BDT 7,350 tax incl.
    BDT 7,350 tax incl.
    BDT 0 Tax
    BDT 7,350 tax excl.
    BDT 7,350 tax excl.
    BDT 0 Tax
    BDT 7,350 tax incl.
    More Industrial pH Electrode - Armor Casing Haoshi H101
    In stock
    In stock: 5
    CJMCU-758 ACS758LCB-050B- PFF-T Hall Current Sensor Module Robotics Bangladesh

    Reference: RBD-2361

    CJMCU-758 ACS758LCB-050B- PFF-T Hall Current Sensor Module

    (0)
    Bi-directional Hall-effect current sensor with a ±50A detection range. Accurate and stable current measurement with a 40mV/A linearity. Compact design with easy mounting capability for versatile applications. Wide operating temperature range: -40°C to 150°C, suitable for harsh environments. Based on ACS758LCB-050B IC, offering high reliability and low...
    BDT 650
    BDT 650 tax incl.
    BDT 650 tax excl.
    BDT 650 tax excl.
    BDT 650 tax incl.
    BDT 650 tax incl.
    BDT 0 Tax
    BDT 650 tax excl.
    BDT 650 tax excl.
    BDT 0 Tax
    BDT 650 tax incl.
    More CJMCU-758 ACS758LCB-050B- PFF-T Hall Current Sensor Module
    In-Stock
    In stock: 11
    Big Microphone Sound Sensor Module Robotics Bangladesh Big Microphone Sound Sensor Module Robotics Bangladesh

    Reference: RBD-2098

    Big Microphone Sound Sensor Module

    (0)
    Big Microphone Sound Sensor Module  Sound Detection Sensor Module High Sensitive Voice Sensor
    BDT 75
    BDT 75 tax incl.
    BDT 75 tax excl.
    BDT 75 tax excl.
    BDT 75 tax incl.
    BDT 75 tax incl.
    BDT 0 Tax
    BDT 75 tax excl.
    BDT 75 tax excl.
    BDT 0 Tax
    BDT 75 tax incl.
    More Big Microphone Sound Sensor Module
    In-Stock
    In stock: 139
    4 Channel Infrared Line Following and Obstacle Sensor Robotics Bangladesh 4 Channel Infrared Line Following and Obstacle Sensor Robotics Bangladesh

    Reference: RBD-2215

    4 Channel Infrared Line Following and Obstacle Sensor

    (0)
    Working voltage (V): 3.3 ~ 5 Working current (A): Above 1A Operating Temperature (℃): -10 ~ +50 Mounting hole: M3 Detection range: 1mm ~ 60 cm adjustable.
    BDT 299
    BDT 299 tax incl.
    BDT 299 tax excl.
    BDT 299 tax excl.
    BDT 299 tax incl.
    BDT 299 tax incl.
    BDT 0 Tax
    BDT 299 tax excl.
    BDT 299 tax excl.
    BDT 0 Tax
    BDT 299 tax incl.
    More 4 Channel Infrared Line Following and Obstacle Sensor
    In-Stock
    In stock: 32
    Roller Lever Endstop Limit Switch Module Robotics Bangladesh

    Reference: RBD-2832

    Roller Lever Endstop Limit Switch Module

    (0)
    High-quality roller lever microswitch for precise contact detection Ideal as a travel limit switch for 3D printers or CNC machines 80cm long 24AWG cable with JST to Dupont connectors for easy integration Red LED indicator lights up when switch is triggered Compatible with 3.3V and 5V logic systems Durable and reliable build quality for repeated operations
    BDT 150
    BDT 150 tax incl.
    BDT 150 tax excl.
    BDT 150 tax excl.
    BDT 150 tax incl.
    BDT 150 tax incl.
    BDT 0 Tax
    BDT 150 tax excl.
    BDT 150 tax excl.
    BDT 0 Tax
    BDT 150 tax incl.
    More Roller Lever Endstop Limit Switch Module
    In-Stock
    In stock: 85
    C1001 60GHz mmWave Indoor Fall Detection Sensor for Arduino (11 Meters) Robotics Bangladesh C1001 60GHz mmWave Indoor Fall Detection Sensor for Arduino (11 Meters) Robotics Bangladesh

    Reference: RBD-3057

    Brand: DFRobot

    C1001 60GHz mmWave Indoor Fall Detection Sensor for Arduino (11 Meters)

    (0)
    C1001 60GHz mmWave radar sensor with advanced human detection features Supports fall detection using point cloud imaging algorithms Provides sleep monitoring with breath and heart rate measurement Detects both motion and static presence, unlike PIR sensors Works with Arduino, ESP32, and micro:bit via Arduino IDE support Wide detection range of up to 11...
    BDT 6,550
    BDT 6,550 tax incl.
    BDT 6,550 tax excl.
    BDT 6,550 tax excl.
    BDT 6,550 tax incl.
    BDT 6,550 tax incl.
    BDT 0 Tax
    BDT 6,550 tax excl.
    BDT 6,550 tax excl.
    BDT 0 Tax
    BDT 6,550 tax incl.
    More C1001 60GHz mmWave Indoor Fall Detection Sensor for Arduino (11 Meters)
    In-Stock
    In stock: 4
    Force Sensing Resistor Flexible Thin Pressure Sensor MD30-60 150g-20kg 30mm Robotics Bangladesh Force Sensing Resistor Flexible Thin Pressure Sensor MD30-60 150g-20kg 30mm Robotics Bangladesh

    Reference: RBD-3760

    Force Sensing Resistor Flexible Thin Pressure Sensor RP-C30-ST 20g to 20Kg

    (0)
    Flexible thin force sensing resistor (FSR) with 30mm circular sensing area Detects applied force from 150g up to 20kg Resistance decreases as applied force increases (analog output) Ultra-thin design (0.45mm) with peel-and-stick backing for easy mounting Compatible with Arduino, Raspberry Pi, and microcontrollers via ADC Durable, cost-effective solution...
    BDT 955
    BDT 955 tax incl.
    BDT 955 tax excl.
    BDT 955 tax excl.
    BDT 955 tax incl.
    BDT 955 tax incl.
    BDT 0 Tax
    BDT 955 tax excl.
    BDT 955 tax excl.
    BDT 0 Tax
    BDT 955 tax incl.
    More Force Sensing Resistor Flexible Thin Pressure Sensor RP-C30-ST 20g to 20Kg
    Last items in stock
    In stock: 1
    50kg Half-bridge Experiments Body Scale Load Cell Sensor Robotics Bangladesh

    Reference: RBD-2149

    50kg Half-bridge Experiments Body Scale Load Cell Sensor

    (0)
    Capacity (Kg): 50. Output Sensitivity (mv/v): 1.0±0.1. Nonlinearity (%FS): 0.03. Repeatability (%FS): 0.03. Input Resistance (Ω): 1000. Insulation Resistance (MΩ): ≥5000.
    BDT 164
    BDT 164 tax incl.
    BDT 164 tax excl.
    BDT 164 tax excl.
    BDT 164 tax incl.
    BDT 164 tax incl.
    BDT 0 Tax
    BDT 164 tax excl.
    BDT 164 tax excl.
    BDT 0 Tax
    BDT 164 tax incl.
    More 50kg Half-bridge Experiments Body Scale Load Cell Sensor
    In-Stock
    In stock: 6
    Force Sensor Resistor Square 38.

    Reference: RBD-0417

    Force Sensor Resistor Square 38.1mm

    (0)
    Easily customizable to a wide range of sizes Cost-effective Ultra-thin; 0.45 mm Robust; up to 10 million actuations Simple and easy to Integrate. RoboticsBD
    BDT 1,620
    BDT 1,620 tax incl.
    BDT 1,620 tax excl.
    BDT 1,620 tax excl.
    BDT 1,620 tax incl.
    BDT 1,620 tax incl.
    BDT 0 Tax
    BDT 1,620 tax excl.
    BDT 1,620 tax excl.
    BDT 0 Tax
    BDT 1,620 tax incl.
    More Force Sensor Resistor Square 38.1mm
    In-Stock
    In stock: 21
    UART EM4100 RFID Card Reader RDM6300 Robotics Bangladesh UART EM4100 RFID Card Reader RDM6300 Robotics Bangladesh

    Reference: RBD-0915

    UART EM4100 RFID Card Reader RDM6300

    (0)
    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
    BDT 415
    BDT 415 tax incl.
    BDT 415 tax excl.
    BDT 415 tax excl.
    BDT 415 tax incl.
    BDT 415 tax incl.
    BDT 0 Tax
    BDT 415 tax excl.
    BDT 415 tax excl.
    BDT 0 Tax
    BDT 415 tax incl.
    More UART EM4100 RFID Card Reader RDM6300
    Last items in stock
    In stock: 2
    TCS34725 RGB Color Sensor Mini Module Robotics Bangladesh

    Reference: RBD-3771

    TCS34725 RGB Color Sensor Mini Module

    (0)
    The TCS34725 RGB Color Sensor Mini Module is a compact, high-precision color sensing solution designed for projects that require accurate light and color detection. Based on the TCS3472 sensor chip, it can measure red, green, blue, and clear light intensity with excellent sensitivity and a wide dynamic range.
    BDT 390
    BDT 390 tax incl.
    BDT 390 tax excl.
    BDT 390 tax excl.
    BDT 390 tax incl.
    BDT 390 tax incl.
    BDT 0 Tax
    BDT 390 tax excl.
    BDT 390 tax excl.
    BDT 0 Tax
    BDT 390 tax incl.
    More TCS34725 RGB Color Sensor Mini Module
    In stock
    In stock: 19
    Current Sensor ACS712-20A Robotics Bangladesh

    Reference: RBD-1175

    Current Sensor ACS712-20A

    (0)
    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 kVRMS minimum isolation voltage from pins 1-4 to pins 5-8 Supply Voltage: 4.5V~5.5V DC Measure Current Range: 20A Sensitivity: 100mV/A
    BDT 199
    BDT 199 tax incl.
    BDT 199 tax excl.
    BDT 199 tax excl.
    BDT 199 tax incl.
    BDT 199 tax incl.
    BDT 0 Tax
    BDT 199 tax excl.
    BDT 199 tax excl.
    BDT 0 Tax
    BDT 199 tax incl.
    More Current Sensor ACS712-20A
    In-Stock
    In stock: 58
    Hi-Link LD2420 24GHz Radar Sensor Module Kit Combo Robotics Bangladesh

    Reference: RBD-3223

    Brand: Hi-Link

    Hi-Link LD2420 24GHz Radar Sensor Module Kit Combo

    (0)
    Hi-Link LD2420 24GHz FMCW Radar Sensor Kit Combo for advanced human presence detection. Detects both motion and stationary targets with high precision and reliability. Includes sensor module and interface accessories for ready-to-use integration. Detection range: up to 8m (wall-mounted) or 5m (ceiling-mounted). UART + digital output for flexible...
    BDT 950
    BDT 950 tax incl.
    BDT 950 tax excl.
    BDT 950 tax excl.
    BDT 950 tax incl.
    BDT 950 tax incl.
    BDT 0 Tax
    BDT 950 tax excl.
    BDT 950 tax excl.
    BDT 0 Tax
    BDT 950 tax incl.
    More Hi-Link LD2420 24GHz Radar Sensor Module Kit Combo
    Last items in stock
    In stock: 1
    IR Infrared Receiver Diode - TSOP38238 Robotics Bangladesh

    Reference: RBD-1200

    IR Infrared Receiver Diode - TSOP38238

    (0)
    Very low supply current Photo-detector and preamplifier in one package Internal filter for PCM frequency Improved shielding against EMI Supply voltage: 2.5 V to 5.5 V Improved immunity against ambient light
    BDT 55
    BDT 55 tax incl.
    BDT 55 tax excl.
    BDT 55 tax excl.
    BDT 55 tax incl.
    BDT 55 tax incl.
    BDT 0 Tax
    BDT 55 tax excl.
    BDT 55 tax excl.
    BDT 0 Tax
    BDT 55 tax incl.
    More IR Infrared Receiver Diode - TSOP38238
    In-Stock
    In stock: 183

    Follow us on Facebook