Download as pdf or txt
Download as pdf or txt
You are on page 1of 7

Digital Heart Beat Sensor

Digital Heart beat sensor

www.researchdesignlab.com

Page 1

Table of Contents

Digital Heart Beat Sensor

OVERVIEW..................................................................................................................................................... 3
FEATURES...................................................................................................................................................... 3
APPLICATION DIAGRAM................................................................................................................................ 4
EXPERIMENTAL SETUP ................................................................................................................................. 5
HEART BEAT SENSOR ARDUINO CODE.......................................................................................................... 5
ARDUINO IDE-SERIAL MONITOR ................................................................................................................... 6
Related Products........................................................................................................................................... 7

www.researchdesignlab.com

Page 2

OVERVIEW

Digital Heart Beat Sensor

This heart beat sensor is designed to give digital output of heart beat when a finger is placed on it. When
the heartbeat detector is working, the top-most LED flashes with each heart beat. This digital output can
be connected to microcontroller directly to measure the Beats Per Minute (BPM) rate. It works on the
principle of light modulation by blood flow through finger at each pulse. Module dual output mode,
digital output is simple, serial output with exact readings.

FEATURES

Heart beat indication by LED


Instant output digital signal for directly connecting
to microcontroller
Total heart beat count can be obtained serially
(TTL) every minute
Module dual output mode, digital output is simple,
serial output with exact reading
Compact size
Working voltage +5v DC

www.researchdesignlab.com

Page 3

Digital Heart Beat Sensor

APPLICATION DIAGRAM

www.researchdesignlab.com

Page 4

Digital Heart Beat Sensor

EXPERIMENTAL SETUP

HEART BEAT SENSOR ARDUINO CODE


byte byteRead;
void setup()
{
Serial.begin(9600);
//BAUD RATE
Serial.println("===================");
Serial.println("heat beat sensor");
Serial.println("===================");
}
void loop()
{
if (Serial.available())
{
int byteRead = Serial.parseInt();
if(!byteRead == 0)
Serial.println(byteRead);
}
}
www.researchdesignlab.com

// CONVERTING ASCII TO INT

Page 5

Digital Heart Beat Sensor

ARDUINO IDE-SERIAL MONITOR

www.researchdesignlab.com

Page 6

Related Products

Atmel mini project board

Atmega mini project board

www.researchdesignlab.com

Digital Heart Beat Sensor

RDL- UNO ATMEGA328 Development Board

RDL UNO-PI

Page 7

You might also like