Skip to main content
Free Delivery  ·  COD Available  ·  15-Day Returns
Elecvora
KY-039 Finger Heartbeat Detection Sensor Module — image 1
Hover to zoom

KY-039 Finger Heartbeat Detection Sensor Module

3.33 ratings
220+ bought in past month
AI Summary
ECG EMG and Heart Rate Sensors for everyday users

The KY-039 Finger Heartbeat Detection Sensor Module is a value-for-money ecg emg and heart rate sensors designed for everyday users. It features Item Type: Sensor and Model No. / Name: Heart Rate Sensor.

₹535
Free Shipping💵 COD Available

Available Offers

Free Delivery on this order. No minimum order value.

15-Day Easy Returns — hassle-free return & full refund.

Secure Payment — 100% safe checkout with UPI, Cards & Net Banking.

Total: ₹535
Buying tip: A smart budget buy — solid performance without breaking the bank.
Estimated delivery: 24 Aug7 Sept
Free Shipping
Pan India delivery
15-Day Returns
Hassle-free policy
Secure Payment
Razorpay protected
Quality Assured
Vetted products only

Available Offers

💳

5% Cashback

Pay with UPI & get 5% cashback (up to ₹50) via Razorpay

🏦

No-Cost EMI

Available on select bank cards at checkout. 0% interest for 3 months.

📦

Free Shipping

Free delivery on all orders. No minimum order value.

💵

Cash on Delivery

COD available on orders up to ₹5,000 across India.

Quick Specs

Item Type: Sensor
Model No. / Name: Heart Rate Sensor
Weight (g): 0.6
Shipping Weight: 0.085 kg
Shipping Dimensions: 3 × 3 × 2 cm

Ideal For

Electronics projectsArduino / Raspberry Pi buildsPrototyping
Share:
SKU: robu-31334Category: ECG EMG and Heart Rate Sensors

About This Product

The KY-039 Finger Heartbeat Detection Sensor Module is a value-for-money ecg emg and heart rate sensors designed for everyday users. It delivers reliable performance at an accessible price.

Key Specifications

  • Item Type: Sensor
  • Model No. / Name: Heart Rate Sensor
  • Weight (g): 0.6
  • Shipping Weight: 0.085 kg
  • Shipping Dimensions: 3 × 3 × 2 cm

Why Buy from Elecvora?

Elecvora sources this product directly, cutting out multiple middlemen. Every order includes free shipping, a 15-day return policy, and secure payment via Razorpay.

This KY-039 Finger Detection Heartbeat Measuring Sensor Module uses bright infrared (IR) LED and a phototransistor to detect the pulse of the finger, a red LED flashes with each pulse. The LED is the light side of the finger, and the phototransistor on the other side of the finger, phototransistor used to obtain the flux emitted, when the blood pressure pulse by the finger when the resistance of the phototransistor will be slightly changed. We chose a very high resistance resistor R1 because most of the light through the finger is absorbed, it is desirable that the phototransistor is sensitive enough. Resistance can be selected by experiment to get the best results. The most important is to keep the shield stray light into the phototransistor. For home lighting that is particularly important because the lights at home mostly based 50HZ or 60HZ fluctuate, so faint heartbeat will add considerable noise. Note : HW-487 on module working remains same.
Example Code:
// Pulse Monitor Test Script int sensorPin = 0; double alpha = 0.75; int period = 100; double change = 0.0; double minval = 0.0; void setup () { Serial.begin (9600); } void loop () { static double oldValue = 0; static double oldChange = 0; int rawValue = analogRead (sensorPin); double value = alpha * oldValue + (1 - alpha) * rawValue; Serial.print (rawValue); Serial.print (","); Serial.println (value); oldValue = value; delay (period); }

Features :

  1. Use IR LED and an optical transistor to detect pulsation in fingers
  2. Small and Compact module
  3. Easy to use.

Package Includes :

1 x KY-039 Finger Detection Heartbeat Measuring Sensor Module

Setup Guide

1
Identify the pins
Locate VCC (power), GND (ground), and data pins (SDA/SCL for I2C, MOSI/MISO for SPI, or TX/RX for UART). Refer to the pinout diagram on the product page.
2
Wire to your microcontroller
Connect VCC to 3.3V or 5V (check the module spec), GND to GND, and data pins to the appropriate GPIO pins on your Arduino or Raspberry Pi.
3
Install libraries
In Arduino IDE, go to Sketch → Include Library → Manage Libraries and search for the sensor library. Install the recommended version.
4
Upload example sketch
Open File → Examples → [library name] → Basic Example. Upload to your board and open Serial Monitor to view output.
5
Calibrate if needed
Some sensors (temperature, humidity, distance) may need a short warm-up period or calibration. Run the calibration sketch if provided.