Arduino project : KY-039 and LCD to monitor pulse rate (tutorial by @pakganern)

in #utopian-io5 years ago

In this tutorial, you will learn the following

how to connect (16X2) LCD with IIC breakout with arduino

  • how to program a code on arduino Desktop IDE
  • how to connect all the components connection using diagram
  • how was the heartbeat module works on arduino, we will learn to built an Arduino based heartbeat monitor which counts the number of heartbeats in a minute. Here we have used a heartbeat sensor module which senses the heartbeat upon putting a finger on the sensor.

Requirements

  • Step 1: Gather all the Requirements

For this part, you will need the following arduino components

  • heart/pulse rate sensor module KY-039
  • Arduino /board
  • Heart Beat sensor module
  • 16x2 LCD
  • Push button
  • Bread board
  • Power
  • Connecting wires

Difficulty

  • Intermediate

Tutorial Contents

  • Step 2: Experimental Procedures

Arduino UNO R3 microconroller

The uno R3 is a microcontroller board based on the ATmega328P (datasheet). It has 14 digital input/output pins (of which 6 can be used as PWM outputs), 6 analog inputs, a 16 MHz quartz crystal, a USB connection, a power jack, an ICSP header and a reset button. It contains everything needed to support the microcontroller; simply connect it to a computer with a USB cable or power it with a AC-to-DC adapter or battery to get started. referenceThe connection of KY-039 to arduinoIn this project we will be using Heart beat sensor module to detect Heart Beat. This sensor module contains an IR pair like an ordinary led which actually detect heart beat from blood. Heart pumps the blood in body which is called heart beat, when it happens the blood cons in body changes. And we use this change to make a voltage or pulse electrically


Heart beat sensor module’s output pin is directly connected to analog pin 0 of arduino. Vcc and GND are connected to Vcc and GND.

  • Sensor pin - AO
  • GND - GND
  • VCC - 5V

The connection of 16x2 LCD with i2c breakout to ArduinoLCD has 4 pins (1) VCC it refers to the power signal of the LCD typically connected to 5volts, (2)GND or sometimes zero voltage, It is also the common connection of the LCD must connect to in one way or another path in order to complete the circuit. the SDA and SCL refers to the 16 normal pins of the LCD which connected to analog pin outputs of the arduino

  • GND - GND
  • VCC - 5V
  • SCL- A4
  • SDA - A5

DIAGRAM

  • Step 3: Connect all components in one circuit breadboard/PCB

SOFTWARE

  • Step 4: Download the Software and Libraries

We are done building the circuit so lets start to set up and make a code for this. we are going to use the arduino ide, to set the sketch for this, if you dont have make sure to download the Arduino IDE for your specific operating system. I’ll leave a link to where you can download this software: https://www.arduino.cc/en/Main/Software

After the installation of the IDE We need to download the i2c library To get the i2c 2x16 LCD library for the Display download it here: https://github.com/arduino-libraries/LiquidCrystal

  • Step 5: Include library to Arduino IDE

When the zipfile is already downloaded open the file then copy the folder unzip the folder to your desktop you can rename it as liquidcrystali2c

Cut the lcd folder in your desktop then go to your folders then locate the arduino folder>> libraries then paste it there. and now the folder liquidcrystal library is already in the arduino ide libraries.

Programming

  • Step 6: Build the code

In the code we have used analog read function to read output of Heart Beat sensor module which is connected to a0 of the arduino, when making a code we need include all the libraries we will be using we have to add the library that we have recently downloaded. #include <LiquidCrystal_I2C.h> for the i2c 2x16 LCD DISPLAY. and the #include <Wire.h> which is already in the IDE.The address LiquidCrystal_I2C lcd(0x27, 2, 1, 0, 4, 5, 6, 7, 3, POSITIVE); is the i2c address woth only 4 pins, if your using the 16 pin then you need to use different address here.setup() method is ran once at the just after the Arduino is powered up and the loop() method is ran continuously afterwards.
setup() is where you want to do any initialisation steps, and in loop() you want to run the code you want to run over and over again.
pinMode(A0,INPUT); Define the sensor pin of hearbeat sensor is connected to the analog pin A0 on the arduino board.
lcd.print(" Heart Monitor "); the iput text word that appears on the serial monitor or lcd display.
delay(); 1000 is equals to 1 second timeframe.

SOURCE CODE:

Step 7: connect the arduino microcontroller to your computer via usb cable.

your computer will automatically scan the device driver, to verify the board of the arduino, on the IDE click >. TOOLS then verify the board type and PORT where the USB is connected.

Step 8: Copy the source code to arduino IDE sketch bar. click the UPLOAD icon on the upper right side toggle, it will automatically compile the sketch to check if theres an error with the code before uploading to the arduino board.

Step 9: DONE uploading. Test, once the code is succesfully uploaded test the sensor if its working and able to detect your current heart rate index.


Thank you for stopping by. All inagesimages and codes are originally made by @pakganern

Sort:  

Your content is plagiarized from other sources on the web (example source code)
Apparently you're also publishing this on other platforms too
Plagiarism is a serious offense. Accordingly, your account has been banned for 60 days.
Future plagiarism could lead to your permanent ban of receiving utopian reviews.


Need help? Write a ticket on https://support.utopian.io/.
Chat with us on Discord.
[utopian-moderator]

Thank you for your review, @mcfarhat! Keep up the good work!

Coin Marketplace

STEEM 0.25
TRX 0.11
JST 0.032
BTC 63519.79
ETH 3073.58
USDT 1.00
SBD 3.82