Laboratory Manual: 18EC3017 Biomedical Electronics & IOT For Healthcare
Laboratory Manual: 18EC3017 Biomedical Electronics & IOT For Healthcare
Laboratory Manual: 18EC3017 Biomedical Electronics & IOT For Healthcare
LABORATORY MANUAL
18EC3017 Biomedical Electronics & IOT for Healthcare
LABORATORY MANUAL
18EC3017 Biomedical Electronics & IOT for Healthcare
REG.NO 180040705
YEAR 03
SEMESTER 05
SECTION 03
COURSE INTRODUCTION
Course Title : BIOMEDICAL ELECTRONICS & IoT FOR HEALTHCARE
Course Objective:
This course provides a comprehensive knowledge on the bio potential recordings and
measurements: The origin of Bio-potentials, bio-potential electrodes, biological amplifiers,
ECG, EEG, EMG, PCG, lead systems and recording methods, typical waveforms and
signal characteristics, Non electric parameter measurements, pH, PO2, PCO2, colorimeter,
Auto analysers, Blood flow meter, cardiac output, respiratory measurement, Blood
pressure, temperature, pulse, Blood Cell Counters.
Course Rationale:
The purpose of this course is to teach students the fundamentals of IOT for
Healthcare: Internet of Things Promises–Definition– Scope–Sensors for IoT Applications–
Structure of IoT– IoT Map Device, Industrial/Healthcare sensors – Description &
Characteristics–First Generation – Description & Characteristics–Advanced Generation –
Description & Characteristics–Integrated IoT Sensors – Description & Characteristics–
Polytronics Systems – Description & Characteristics–Sensors' Swarm – Description &
Characteristics–Printed Electronics – Description & Characteristics–IoT Generation
Roadmap. Application of IOT In Healthcare: smart-wearables, smart-clothing, elderly fall-
detection, infant care system, Monitor an aging family member, Scalable, continuous, heart
rate monitoring
Finally, the students will develop a prototype model for a real time and IoT
applications to have hands on experience in using tool chains such as Arduino and Raspberry
Pi for the development of IoT for Healthcare system
The laboratory framework includes a creative element but shifts the time-intensive aspects
outside of the Two-Hour closed laboratory period. Within this structure, each laboratory
includes three parts: Prelab, In-lab, and Post-lab.
A. Pre-Lab
The Prelab exercise is a homework assignment that links the lecture with the laboratory
period - typically takes 2 hours to complete. The goal is to synthesize the information they
learn in lecture with material from their Techbook to produce a working piece of software.
Prelab Students attending a two-hour closed laboratory are expected to make a good-faith
effort to complete the Prelab exercise before coming to the lab. Their work need not be
perfect, but their effort must be real (roughly 80 percent correct).
B. In-Lab
The In-lab section takes place during the actual laboratory period. The First hour of the
laboratory period can be used to resolve any problems the students might have experienced in
completing the Prelab exercises. The intent is to give constructive feedback so that students
leave the lab with working Prelab software - a significant accomplishment on their part.
During the second hour, students complete the In-lab exercise to reinforce the concepts
learned in the Prelab. Students leave the lab having received feedback on their Prelab and In-
lab work.
C. Post-Lab
The last phase of each laboratory is a homework assignment that is done following the
laboratory period. In the Post-lab, students analyse the efficiency or utility of a given system
call. Each Post-lab exercise should take roughly 120 minutes to complete.
S.NO DATE NAME OF THE PRE- IN-LAB POST- VIVA TOTAL FACULTY
EXPERIMENT LAB (35M) LAB SIGNATURE
Logic Execution Result Analysis WITH DATE
(5M)
(10M) (10M) (10M) (5M) (5M) (5M) (50M)
1
6
Biomedical Electronics & IOT for Healthcare (18EC3017) LABORATORY MANUAL 2020-2021
S.NO DATE NAME OF THE PRE- IN-LAB POST- VIVA TOTAL FACULTY
EXPERIMENT LAB (35M) LAB SIGNATURE
Logic Execution Result Analysis WITH DATE
(5M)
(10M) (10M) (10M) (5M) (5M) (5M) (50M)
7
10
11
12
S.NO DATE NAME OF PROJECT IMPLEMENTATION DEMONSTRATION RESULTS VIVA TOTAL FACULTY
THE REPORT & METHODOLOGY & VOCE SIGNATURE
PROJECT ANALYSIS WITH DATE
Software Used:
Arduino sketch, Tinkercad
PRE-LAB WORK:
Ultrasonic sensors are great tools to measure distance without actual contact and
used at several places like water level measurement, distance measurement etc.
This is an efficient way to measure small distances precisely.
3. If the signal is received, then it is through high level. The time of high
duration is the time gap between sending and receiving the signal.
Distance= (Time x Speed of Sound in Air (340 m/s))/2
In the circuit diagram, Arduino pin13 is connected to one terminal of the
speaker. Other terminal is connected to ground. Trigger pin of ultrasonic sensor
is connected to pin number of 7 of Arduino. Echo signal is connected to pin
number 6 of Arduino.
Timing Diagram
Here we have divided the product of speed and time by 2 because the time is the
total time it took to reach the obstacle and return back. Thus the time to reach
obstacle is just half the total time taken.
Algorithm:
Step1: Set trigger as output
Step7: Set Arduino pin 13 to one terminal of speaker and other terminal
to ground
PSUEDO CODE:
int trig=7;int echo=6;
void setup()
{
Serial.begin(9600);
pinMode(trig,OUTPUT);
pinMode(echo,INPUT);
pinMode(8,OUTPUT);
pinMode(9,OUTPUT);
}
void loop()
{
digitalWrite(trig,LOW);
delayMicroseconds(2);
digitalWrite(trig,HIGH);
delayMicroseconds(10);
digitalWrite(trig,LOW);
int time=pulseIn(echo,HIGH);
float distance=time*0.034/2;
Serial.print("distance=");
Serial.println(distance);
if(distance<=302)
{
digitalWrite(8,1);
Serial.print("object is nearer");
delay(2000);
}
if(distance>30&&distance<=500)
{
digitalWrite(8,0);
digitalWrite(9,1);
Serial.print("object detected");
delay(2000);
}
}
OBSERVATIONS:
CIRCUIT DIAGRAM
Conclusion:
We designed the Human Proximity Alert system for social distance COVID19.
VIVA Voce:
1. What is Arduino?
2. What is COVID-19?
Coronavirus disease (COVID-19) is an infectious disease caused by a newly discovered
coronavirus.Most people who fall sick with COVID-19 will experience mild to moderate
symptoms and recover without special treatment.
3. Discuss the types of Proximity sensor.
•
Positive Displacement. ...
• Velocity Meters. ...
• Mass Flow Meters. ...
• Open Channel Meters.
5. Identify the various industry graded proximity sensors and mention those sensors.
Evaluator’s Observation