
Reference: RBD-1354
Jumper Wire Single 20cm
Length: 8 inches/20 CM (Long) Material: Copper Plated Pin Spacing: 2.54mm.
Reference: RBD-1354
Length: 8 inches/20 CM (Long) Material: Copper Plated Pin Spacing: 2.54mm.
Reference: RBD-0351
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)...
Reference: 0245
Choose your desire Resistor value from below:
Reference: 0031
3 Types Available (Please select from option) 1. Male to Male 2. Male to Female 3. Female-Female
Reference: RBD-0768
Size: 5mm Color: RED Head Shape: Round Lens Appearance: Transparent
Reference: 1353
Length: 12.5 inches/30 CM (Long) Material: Copper Plated Pin Spacing: 2.54mm.
Reference: RBD-0761
Breadboard friendly Mounting Style: Through Hole Mounting Direction: Vertical
Pulse Sensor 3.3-5V Heartbeat Heart Rate Monitor Sensor
Easy to use finger-tip heart rate detector module with built-in noise filter and signal amplification.
The PulseSensor Heart Rate Sensor is an easy to use finger-tip heart rate detector module with built-in noise filter and signal amplification.
If you look closely at the module, you will see a small photosensor on the front side with the silk-screened heart where you place your finger.
On the backside of the module you will find the rest of the components including a reverse mounted green LED that shines through the hole, an Op Amp and a number of resistors and capacitors and a diode.
The sensor works by shining a bright green LED into a finger (or other body part like an ear lobe) and detecting the amount of light that is reflected back used a photosensor that is tuned to the green light spectrum.
As blood is pumped through the finger with each heartbeat, the amount of reflected light changes, creating a changing waveform on the output of the photosensor that is representative of the heart rate.
This signal from the photosensor is small and riding on a changing DC bias, so the signal is then passed through an R/C filter network and then amplified using an Op Amp to create a signal that is much larger, cleaner and easier to detect using an analog port on an MCU.
The wire colors are not color coded, so ensure that you look at the markings on the back of the module to ensure that you have the three wires correctly identified
The module can be powered from 3.3 or 5V. The positive voltage connects to ‘+’ and ground connects to ‘-‘. There is a reverse protection diode on the module to prevent damage should the power leads be accidentally reversed.
The 3rd ‘S’ wire is the analog signal output from the sensor and this will connect to the analog input of a uC.
1 x 3 Wire Harness
This device is a small unprotected circuit board which works fine for bench top testing and experimenting with heart rate detection. If you intend instead to use it for a more real-world application such as making a heart rate monitor to use while you are riding an exercise bike, you should plan to provide some protection to the module from salty sweat which can corrode and short circuit the circuitry as well as strain relieve the wires to prevent them from breaking from being constantly flexed.
Since the sensor comes with short breadboard style wires, you may need to replace them with longer wires that are more suitable for you application. You will want to do this before you seal the back of the unit as noted below.
The back of the module can be protected using hot melt glue. To apply, simply apply a glob of hot melt glue on something like blue painters tape and then press the back of the module into the hot glue. The hot melt glue also helps to strain relieve the wires if some is also dabbed on the front side of the wires as well. Once cool, remove from the tape and trim the excess glue from around the edges using nail trimmers or a similar tool.
The nice thing about hot melt is that it can be removed if you decide to make changes, but more permanent sealers like epoxy or RTV can also be used. Just be sure to use non-corrosive types that are compatible with electronics.
The front of the module can be protected using a transparent self adhesive vinyl sticker or similar. You should check performance before and after applying any protective layer over the LED and sensor to make sure the performance is not too greatly affected.
While the device is not quite hospital grade, it does a respectable job and is a big improvement over using the simple modules that include just an LED and photosensor.
The PulseSensor is an open source device originally created by PulseSensor.com. There is a wealth of information available on their website. If you download the PulseSensor Playground library in the Arduino IDE, it will also install a number of sample programs that can be used with the sensor.
The simple program below reads the sensor and blinks the on-board LED each time it detects a pulse. It does not require an library, it simply reads the output of the sensor directly and blinks the LED if the reading is above or below a threshold value.
More interestingly, you can open the Serial Plotter window which will plot the output of the sensor so that you can see how the position of the finger and pressure affects the reading.
To get it running, simply hook the sensor up to 5V and ground and connect the Signal pin to A0. Place your finger on the sensor and give it a few moments for the plotter window to autoscale and basically zoom in on signal. You will find that finger position and amount of pressure will have a significant affect on the reading. Generally you want just a light pressure on the sensor.
An example Serial Plotter window output reading is shown here to the right. In this case, the pulse is registering between about 510 and 516. If you are powering the sensor off of 5V, the default threshold setting of 512 will get you close but you may want to play with that value for best detection. You can look at the Y-Axis of the serial plotter graph to see the range of numbers that the sensor is providing and adjust the threshold value based on that to give the best pulse detection.
If you wanted to determine the pulse rate, you could count the milliseconds between the detected pulses and calculate it from the formula Pulse Rate = 60 / (milliseconds/1000)
/* PulseSensor Heart Rate Test Program * Basic code to evaluate the PulseSensor heart rate sensor module * Connect to 5V, Gnd and Signal goes to A0 * * When heartbeat detected, flash on-board LED * Open Serial Plotter window to observe the detected waveform. * Threshold value can be adjusted for best detection. */ int const PULSE_SENSOR_PIN = 0; // 'S' Signal pin connected to A0 int Signal; // Incoming ADC data. Value can range from 0-1024 int Threshold = 512; // Sets ADC threshold for what constitutes a heartbeat. //=============================================================================== // Initialization //=============================================================================== void setup() { pinMode(LED_BUILTIN,OUTPUT); // Built-in LED will blink to your heartbeat Serial.begin(9600); // Set comm speed for serial plotter window } //=============================================================================== // Main //=============================================================================== void loop() { Signal = analogRead(PULSE_SENSOR_PIN); // Read the sensor value Serial.println(Signal); // Send the Signal value to Serial Plotter if(Signal > Threshold){ // If the signal is above threshold,turn on LED digitalWrite(LED_BUILTIN,HIGH); } else { digitalWrite(LED_BUILTIN,LOW); // Else, if signal below threshold, so turn off LED } delay(10); }
The latest price of Pulse Sensor 3.3-5V Heartbeat Heart Rate Monitor Sensor in Bangladesh is BDT 530 You can buy the Pulse Sensor 3.3-5V Heartbeat Heart Rate Monitor Sensor 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. |
Reference: RBD-1022
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.
Reference: RBD-1049
Operating voltage: 5V Provide both digital and analog output Adjustable sensitivity Output LED indicator Compatible with Arduino TTL Compatible Bolt holes for easy installation
Reference: RBD-2723
This acrylic mounting bracket fits the E18-D80NK Infrared Proximity sensor.
Reference: RBD-0151
Operating voltage 3.3V-12V A fixed bolt hole for easy installation Wide voltage LM393 comparator Maximum output current: 15mA Can work on low voltages
Reference: RBD-3598
The GY-BNO055 9DOF Absolute Orientation Sensor Module is a high-precision 9-axis IMU (Inertial Measurement Unit) breakout board that combines a 3-axis accelerometer, 3-axis gyroscope, and 3-axis magnetometer. Unlike traditional IMUs, the BNO055 simplifies complex motion tracking by integrating a high-speed ARM Cortex-M0 processor directly on the chip....
Reference: RBD-3404
3-axis magnetic electronic compass. Precise heading information. Operating Voltage: 3 -5 V DC. Driver Chip: HMC5883L / QMC5883L Communication: I2C protocol. Measuring range: ± 1.3-8 Gauss.
Reference: RBD-1946
Comes with the BME280 sensor. Pressure accuracy of ±1 hPa. Temperature accuracy ±1.0°C. Altimeter accuracy ±1 meter. Humidity: +-3%
Reference: RBD-0222
Sound pressure level: 85DB 10cm The input voltage: 30vp-p max Ultra-thin and lightweight Low power consumption for voltage type Operating Temperature: -20~70 Storage Temperature: -30-80 Clear sound
Reference: RBD-3219
Brand: Hi-Link
The Hi-Link HLK-LD6001C is a state-of-the-art 60GHz millimeter wave radar sensor module designed for accurate, all-day entrance and exit detection. This module uses FMCW (Frequency Modulated Continuous Wave) radar technology to provide precise counting of personnel flow without privacy concerns. Unlike traditional sensors (visual, infrared, or laser),...
Reference: RBD-1063
Temperature Control Range(°C): -10 to +50 Resolution @-9.9°C to +99.9°C: 0.1°C Resolution @all temperatures: 1°C Accuracy: 0.1°C Refresh Rate(s): 0.5 Supply Voltage(V): 12 Measuring Inputs: NTC10K Cable Length: 0.5 Meter Output Type: 1 Channel Relay Output Capacity: 10A If you need to measure more than 50c please review this product. XH-W1219 Temperature...
Reference: RBD-0427
Working voltage: 3.3V-5V Output form: digital output (0 and 1)
Reference: RBD-3222
Brand: Hi-Link
The Hi-Link LD2420 is a high-sensitivity 24GHz radar sensor module designed for precise human presence detection. Utilizing FMCW (Frequency Modulated Continuous Wave) radar technology, it detects human targets in both motion and stationary states with exceptional accuracy. This module outperforms traditional PIR sensors, offering enhanced sensitivity and...
Reference: RBD-1204
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
Reference: RBD-1193
Infrared Photodiode Transmitter 3mm Infrared Photodiode Receiver 3mm
Reference: RBD-2330
AS7343 14-channel spectral sensor covering 380nm to 1000nm (VIS to NIR range) Features 12 visible spectrum channels, 1 near-infrared channel, and clear/flicker detection channels Optimized for reflective, transmissive, and emissive measurements in consumer and industrial applications Compact design with I²C interface for easy integration Ideal for color...
Reference: RBD-2710
The Eye Blink Detection Analog & Digital Sensor with Goggles is a powerful tool designed for Arduino enthusiasts, developers, and researchers interested in human-computer interaction and biometric sensing. Why is an analog eyeblink sensor better than a digital eyeblink sensor? Currently, most eye blink sensors on the market are digital. they can only...
Reference: RBD-2224
Voltage – 250V Easy PCB mounting Good consistency Widely acclaimed
Reference: RBD-2248
Model: LDT0-028K Solder tab connection Withstands high impact
Reference: RBD-3278
The INA226 Voltage Current Power Monitoring Module is a high-precision I²C-based sensor designed for real-time voltage, current, and power measurements in electronic circuits. With its high 16-bit ADC resolution, this module ensures accurate and reliable monitoring of power consumption, making it an essential tool for engineers, hobbyists, and...
Reference: RBD-0163
Product Type: Humidity Module Sensor Working voltage range DC 5.0±0.2V Output voltage range (corresponding to 0-100%RH) DC 1-3.19V Test accuracy 5% RH
Reference: RBD-2938
Brand: DFRobot
If you're looking to work with an NPK sensor, you'll quickly notice that most options come with either Chinese-only documentation or limited support, making them difficult for beginners. That's where the DFRobot NPK Sensor stands out — it offers extensive documentation and sample code, making it far more accessible. By using the DFRobot Modbus/RS485...
Reference: RBD-2482
Module utilizes the popular 1-Wire DS18B20 temperature measurement IC.
Reference: RBD-1210
Single Supply:2.7-36V High Responsivity:0.45A/W(650nm) Bandwidth:14Khz
Reference: RBD-3001
Brand: DFRobot
As the most basic part of life, air is attracting more and more attention, for example, the most common PM2.5, PM1.0, PM10, etc. Keeping an eye on the quality of the air we breath is becoming quite important. DFRobot brings you this Air Quality Sensor that can measure particulate matter like PM2.5, PM1.0, PM10. With easy-to-use Gravity interface, the air...
Reference: RBD-1835
Input current (RMS): 50A. Work temperature: -25℃~+70℃. Storage temperature: -30℃~+90℃. Work voltage: 660V. Frequency range: 50Hz-1KHz.
Reference: RBD-1847
Compact Design Country Specific pressure Multiple Displayable Unit Multi-colored, two-part display Alphanumeric display Discontinued by Manufactured 2017
Reference: RBD-0396
Integrated with wire enclosed waterproof probe, suitable for wet, harsh measurement occasions Small size, easy to use Operating Voltage: 5 V Sonar Sensing Range: 25-450 cm Max. Sensing Range: 450 cm Frequency: 40 KHz. RoboticsBD
Reference: RBD-2950
Need a device to sense light? We have the Grove – Light Sensor v1.2 for you. Now you can measure light levels with higher reliability and sensibility. It is an updated version of Grove – Light Sensor 1.0. You can use it as a light-controlled switch i.e. switch off lights during day time and switch on lights during night time.
Reference: RBD-3399
Good sensitivity to CO/Combustible Gas High sensitivity to Methane, Propane, and CO Long life and low cost Simple drive circuit Input voltage: DC 5±0.2V Current Consumption: 150mA
Reference: RBD-1179
Temperature measuring range: 0...100°C Typical Input Voltage:3.3VDC,5VDC Operating Current:60uA Interface: Analog ** We've received reports from some customers that they were unable to make the product work. To avoid any inconvenience, we suggest that you refrain from making a purchase unless you're confident that you can use it successfully.
Reference: RBD-0797
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...
Reference: RBD-0285
PV Nylon Head Two Axial plastic Two axial platform Anti-vibration lightweight Good design and shape Net weight 20g Color : Black Material: Plastic.
Reference: RBD-2122
Working Voltage:1.8 to 5.5 V Shutdown Current:0.7µA Color:Green Note: This board is intended for advanced users with soldering experience and customization skills. Modifications are required to use it with an MCU
Reference: RBD-2110
Low dropout voltage Load regulation: 0.2% typical Optimized for Low Voltage On-chip thermal limiting Built-in thermal shutdown Good noise rejection
Reference: RBD-1875
Fully compatible with the PC. Moulded strain relief and PVC over moulding to ensure a lifetime of error-free data transmissions. Aluminium under mould shield helps meet FCC requirements on KMI/RFI interference. Foil and braid shield complies with fully rated cable specifications reducing EMI/FRI interference.
Reference: RBD-2049
Rotation Angle: 300° ±10° Gyroscopic Moment: 10-200gf.cm Rotational Stopper Strength: 3Kgf.cm Push-Pull Strength: 8kGF Max Shaft Wobble: 0.6xL/20MM p-p Max Total Resistance Tolerance: ±20% Residual Resistance: R less than or equal to 10K Ohms 10 Ohms Withstand Voltage: 1 minute at 300V AC Rotation Life: 10000 times Can be used as a 10K contrast...
Reference: RBD-1687
Model No.: ISR18650-1300 Capacity (mAh): 750-1300 (Copy) Output Voltage: 3.7V High energy density High working voltage for single battery cells. It's a clone battery so the ampere couldn't be guaranteed.