• 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:
    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

    Reference: RBD-0523

    pH Sensor Analog Meter Kit For Arduino

    (0)
    Module Power: 5.00V Module Size : 43 x 32mm(1.69×1.26″) Measuring Range :0 – 14PH Measuring Temperature: 0 – 60 ℃ Accuracy : ± 0.1pH (25 ℃)
    BDT 2,584 BDT 3,099
    BDT 3,099 BDT 2,584 tax incl.
    BDT 3,099 BDT 2,584 tax excl.
    BDT 3,099 BDT 2,584 tax excl.
    BDT 3,099 BDT 2,584 tax incl.
    BDT 3,099 BDT 2,584 tax incl.
    BDT 0 BDT 0 Tax
    BDT 3,099 BDT 2,584 tax excl.
    BDT 3,099 BDT 2,584 tax excl.
    BDT 0 BDT 0 Tax
    BDT 3,099 BDT 2,584 tax incl.
    More pH Sensor Analog Meter Kit For Arduino
    Sold-out
    In stock: 0
    QTR-8A Reflectance Sensor Array Robotics Bangladesh QTR-8A Reflectance Sensor Array Robotics Bangladesh

    Reference: RBD-2533

    QTR-8A Reflectance Sensor Array

    (0)
    8-channel reflectance sensor array with IR LED/phototransistor pairs Ideal for line-following robots, proximity detection, and surface tracking 0.375" (9.525 mm) pitch for accurate edge and path detection Independent analog voltage outputs for precise sensing MOSFET control enables LED power saving and PWM brightness control Compatible with 5V (default)...
    BDT 1,150
    BDT 1,150 tax incl.
    BDT 1,150 tax excl.
    BDT 1,150 tax excl.
    BDT 1,150 tax incl.
    BDT 1,150 tax incl.
    BDT 0 Tax
    BDT 1,150 tax excl.
    BDT 1,150 tax excl.
    BDT 0 Tax
    BDT 1,150 tax incl.
    More QTR-8A Reflectance Sensor Array
    In-Stock
    In stock: 28
    Raspberry Pi High Quality Camera with 6mm Lens Robotics Bangladesh Raspberry Pi High Quality Camera with 6mm Lens Robotics Bangladesh

    Reference: RBD-1423

    Brand: Raspberry Pi Official

    Raspberry Pi High Quality Camera with 6mm Lens

    (0)
    Sony IMX477R stacked, back-illuminated sensor. Resolution: 12.3 megapixels. Compatible with Raspberry Pi 1/2/3/4 boards Output: RAW12/10/8, COMP8 Back focus: Adjustable (12.5 mm–22.4 mm) Lens standards: C-mount, CS-mount (C-CS adapter included) IR cut filter: Integrated Wide Field of View suitable for CCTV applications Suitable for macro photography...
    BDT 16,450
    BDT 16,450 tax incl.
    BDT 16,450 tax excl.
    BDT 16,450 tax excl.
    BDT 16,450 tax incl.
    BDT 16,450 tax incl.
    BDT 0 Tax
    BDT 16,450 tax excl.
    BDT 16,450 tax excl.
    BDT 0 Tax
    BDT 16,450 tax incl.
    More Raspberry Pi High Quality Camera with 6mm Lens
    Last items in stock
    In stock: 1
    Optical Dust Sensor GP2Y1010AU0F Robotics Bangladesh Optical Dust Sensor GP2Y1010AU0F Robotics Bangladesh

    Reference: RBD-0441

    Optical Dust Sensor GP2Y1010AU0F

    (0)
    Power supply voltage: DC5 ± 2V Sensitivity: 0.5V / (0.1mg / m3) The minimum detection level of particles: 0.8 m Clean air voltage: 0.9V typ. Low consumption current (Icc: MAX. 20 mA) The presence of dust can be detected by the photometry of only one pulse Enable to distinguish smoke from house dust RoboticsBD
    BDT 680
    BDT 680 tax incl.
    BDT 680 tax excl.
    BDT 680 tax excl.
    BDT 680 tax incl.
    BDT 680 tax incl.
    BDT 0 Tax
    BDT 680 tax excl.
    BDT 680 tax excl.
    BDT 0 Tax
    BDT 680 tax incl.
    More Optical Dust Sensor GP2Y1010AU0F
    In-Stock
    In stock: 25
    SGP30 TVOC/eCO₂ Air Quality Sensor Module Formaldehyde, CO₂ Multi Gas Sensor with Case Robotics Bangladesh SGP30 TVOC/eCO₂ Air Quality Sensor Module Formaldehyde, CO₂ Multi Gas Sensor with Case Robotics Bangladesh

    Reference: RBD-3846

    SGP30 TVOC/eCO₂ Air Quality Sensor Module Formaldehyde, CO₂ Multi Gas Sensor with Case

    (0)
    The SGP30 Air Quality Sensor Module is a high-precision digital multi-pixel gas sensor designed to measure total volatile organic compounds (TVOC) and equivalent CO₂ (eCO₂) concentrations in the air. Built using Sensirion’s CMOSens® technology, the SGP30 offers superior long-term stability, low drift, and high sensitivity — ideal for applications like air...
    BDT 2,550
    BDT 2,550 tax incl.
    BDT 2,550 tax excl.
    BDT 2,550 tax excl.
    BDT 2,550 tax incl.
    BDT 2,550 tax incl.
    BDT 0 Tax
    BDT 2,550 tax excl.
    BDT 2,550 tax excl.
    BDT 0 Tax
    BDT 2,550 tax incl.
    More SGP30 TVOC/eCO₂ Air Quality Sensor Module Formaldehyde, CO₂ Multi Gas Sensor with Case
    Last items in stock
    In stock: 2
    Anti-Corrosion Water Level Sensor with Ball Float Switch Robotics Bangladesh

    Reference: RBD-2141

    Anti-Corrosion Water Level Sensor with Ball Float Switch

    (0)
    Rating contract (Max.): 10 W Switching power supply (Max.): 110VDC Resistance contract (Max.): 100 Ω Appro. Float Ball Size (mm) : 24×17 (LxD) Body Total Length (mm) : 85 Cable Length (cm) : 37 Total Float opening: 70° Switch ON/OFF angle Approx. betn 15° to 20°
    BDT 350
    BDT 350 tax incl.
    BDT 350 tax excl.
    BDT 350 tax excl.
    BDT 350 tax incl.
    BDT 350 tax incl.
    BDT 0 Tax
    BDT 350 tax excl.
    BDT 350 tax excl.
    BDT 0 Tax
    BDT 350 tax incl.
    More Anti-Corrosion Water Level Sensor with Ball Float Switch
    In-Stock
    In stock: 73
    EMG Muscle Sensor With Cable And Electrodes Controller Detects Muscle Activity Robotics Bangladesh

    Reference: RBD-2214

    EMG Muscle Sensor With Cable And Electrodes Controller Detects Muscle Activity

    (0)
    EMG muscle sensor V3.0 with cable and electrodes Measures the electrical activity of muscles High signal quality for accurate and reliable measurement Adjustable gain and filtering for signal conditioning Compatible with various types of microcontrollers and data acquisition systems Comes with reusable electrodes and a 3.5mm jack cable for easy connection
    BDT 2,550
    BDT 2,550 tax incl.
    BDT 2,550 tax excl.
    BDT 2,550 tax excl.
    BDT 2,550 tax incl.
    BDT 2,550 tax incl.
    BDT 0 Tax
    BDT 2,550 tax excl.
    BDT 2,550 tax excl.
    BDT 0 Tax
    BDT 2,550 tax incl.
    More EMG Muscle Sensor With Cable And Electrodes Controller Detects Muscle Activity
    In-Stock
    In stock: 17
    Pre-order Fingerprint Scanner - TTL (GT-511C3) Robotics Bangladesh Fingerprint Scanner - TTL (GT-511C3) Robotics Bangladesh

    Reference: RBD-0142

    Fingerprint Scanner - TTL (GT-511C3)

    (0)
    Description: Fingerprint scanners are awesome. Why use a key when you have one right at the tip of your finger? Unfortunately, they’re usually unreliable or difficult to implement. Well not anymore! We’ve found this great fingerprint module from ADH-Tech that communicates over TTL Serial so you can easily embed it into your next project.
    BDT 4,800
    BDT 4,800 tax incl.
    BDT 4,800 tax excl.
    BDT 4,800 tax excl.
    BDT 4,800 tax incl.
    BDT 4,800 tax incl.
    BDT 0 Tax
    BDT 4,800 tax excl.
    BDT 4,800 tax excl.
    BDT 0 Tax
    BDT 4,800 tax incl.
    More Fingerprint Scanner - TTL (GT-511C3)
    Pre-order
    In stock: 0
    MH-Z19 Infrared CO₂ Sensor Module NDIR Gas Detection 400~5000ppm UART/PWM Output Robotics Bangladesh

    Reference: RBD-3739

    MH-Z19 Infrared CO₂ Sensor Module NDIR Gas Detection 400~5000ppm UART/PWM Output

    (0)
    The MH-Z19E CO₂ Sensor Module is a compact, intelligent gas detection sensor based on NDIR (Non-Dispersive Infrared) technology. Designed for high accuracy and long-term stability, it can measure CO₂ concentrations in the 400–5000 ppm range, making it suitable for air quality monitoring, ventilation control, and smart home systems.
    BDT 3,950
    BDT 3,950 tax incl.
    BDT 3,950 tax excl.
    BDT 3,950 tax excl.
    BDT 3,950 tax incl.
    BDT 3,950 tax incl.
    BDT 0 Tax
    BDT 3,950 tax excl.
    BDT 3,950 tax excl.
    BDT 0 Tax
    BDT 3,950 tax incl.
    More MH-Z19 Infrared CO₂ Sensor Module NDIR Gas Detection 400~5000ppm UART/PWM Output
    In stock
    In stock: 5
    Sold-out RPLIDAR A2 360° Laser Range Scanner Robotics Bangladesh RPLIDAR A2 360° Laser Range Scanner Robotics Bangladesh

    Reference: RBD-1206

    RPLIDAR A2 360° Laser Range Scanner

    (0)
    Scanning Range: 18M Radius Detection Range:  12M Radius 4cm Ultra-thin Ideal for all kinds of service robot. 8000 times sample rate, the highest in the current economical LIDAR industry 360-degree laser range scanning Low Noise, Brushless Motor New Non-contact Drive OPTMAG Original Design, prolong the life-span Class 1 Laser Safety Standard High-speed...
    BDT 49,000
    BDT 49,000 tax incl.
    BDT 49,000 tax excl.
    BDT 49,000 tax excl.
    BDT 49,000 tax incl.
    BDT 49,000 tax incl.
    BDT 0 Tax
    BDT 49,000 tax excl.
    BDT 49,000 tax excl.
    BDT 0 Tax
    BDT 49,000 tax incl.
    More RPLIDAR A2 360° Laser Range Scanner
    Sold-out
    In stock: 0
    Gravity Analog LM35 Temperature Sensor For Arduino Robotics Bangladesh Robotics Bangladesh Gravity Analog LM35 Temperature Sensor For Arduino Robotics Bangladesh Robotics Bangladesh

    Reference: RBD-3814

    Brand: DFRobot

    Gravity Analog LM35 Temperature Sensor For Arduino

    (0)
    Gravity Analog LM35 Temperature Sensor For ArduinoDFRobot SKU: DFR0023
    BDT 690
    BDT 690 tax incl.
    BDT 690 tax excl.
    BDT 690 tax excl.
    BDT 690 tax incl.
    BDT 690 tax incl.
    BDT 0 Tax
    BDT 690 tax excl.
    BDT 690 tax excl.
    BDT 0 Tax
    BDT 690 tax incl.
    More Gravity Analog LM35 Temperature Sensor For Arduino
    In stock
    In stock: 8
    MC-38 Wired Door Window Sensor Magnetic Switch Home Alarm System Robotics Bangladesh

    Reference: RBD-1942

    MC-38 Wired Door Window Sensor Magnetic Switch Home Alarm System

    (0)
    Actuation Distance : 15 – 25 mm; Connecting cable length: 30 cm. Magnetic sensor alarm, control the switch of the circuit via the built-in magnet Alarm when someone intrudes into your places Can be used in places like apartment, hotel, office, etc.
    BDT 155
    BDT 155 tax incl.
    BDT 155 tax excl.
    BDT 155 tax excl.
    BDT 155 tax incl.
    BDT 155 tax incl.
    BDT 0 Tax
    BDT 155 tax excl.
    BDT 155 tax excl.
    BDT 0 Tax
    BDT 155 tax incl.
    More MC-38 Wired Door Window Sensor Magnetic Switch Home Alarm System
    In-Stock
    In stock: 87
    On sale! 9 Degrees of Freedom Breakout- MPU9250 Robotics Bangladesh

    Reference: RBD-0680

    9 Degrees of Freedom Breakout- MPU9250

    (0)
    Acceleration, Gyroscope Power Supply: DC3.3V-5V Chip: MPU9250 Size: 22 mm x 17 mm. Gyro range : ± 250 500 1000 2000 ° / s Acceleration range: ± 2 ± 4 ± 8 ± 16g 9 DOF modules. RoboticsBDChinese Variant MP92 QFN24 PackageThe magnetometer is currently inaccessible via I2C and therefore unavailable. ✅ True 9DOF ModulesOriginal MPU9255 9-Axis Motion Tracking...
    BDT 605
    BDT 605 tax incl.
    BDT 605 tax excl.
    BDT 605 tax excl.
    BDT 605 tax incl.
    BDT 605 tax incl.
    BDT 0 Tax
    BDT 605 tax excl.
    BDT 605 tax excl.
    BDT 0 Tax
    BDT 605 tax incl.
    More 9 Degrees of Freedom Breakout- MPU9250
    In-Stock
    In stock: 47

    Reference: RBD-0307

    Contactless Temperature Sensor Module For Arduino

    (0)
    Operating Voltage(V): 3- 5 Operating Current(mA): 2 Communication protocol: I2C Power saving mode Automotive grad Small size, low cost. RoboticsBD
    BDT 995 BDT 1,090
    BDT 1,090 BDT 995 tax incl.
    BDT 1,090 BDT 995 tax excl.
    BDT 1,090 BDT 995 tax excl.
    BDT 1,090 BDT 995 tax incl.
    BDT 1,090 BDT 995 tax incl.
    BDT 0 BDT 0 Tax
    BDT 1,090 BDT 995 tax excl.
    BDT 1,090 BDT 995 tax excl.
    BDT 0 BDT 0 Tax
    BDT 1,090 BDT 995 tax incl.
    More Contactless Temperature Sensor Module For Arduino
    In-Stock
    In stock: 18
    DS18B20 Digital Thermometer Robotics Bangladesh

    Reference: RBD-1198

    DS18B20 Digital Thermometer

    (0)
    Industrial Systems Consumer Products Thermometers Thermally Sensitive Systems
    BDT 95
    BDT 95 tax incl.
    BDT 95 tax excl.
    BDT 95 tax excl.
    BDT 95 tax incl.
    BDT 95 tax incl.
    BDT 0 Tax
    BDT 95 tax excl.
    BDT 95 tax excl.
    BDT 0 Tax
    BDT 95 tax incl.
    More DS18B20 Digital Thermometer
    In-Stock
    In stock: 254

    Follow us on Facebook