-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (45 loc) · 2.18 KB
/
Copy pathindex.html
File metadata and controls
51 lines (45 loc) · 2.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cardio Visualizer Project</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Cardio Visualizer</h1>
<p>A compact, real-time heart rate and blood oxygen monitoring system for gym equipment.</p>
</header>
<nav>
<a href="#overview">Overview</a>
<a href="#design">Design & Implementation</a>
<a href="#algorithm">Software Algorithm</a>
<a href="#conclusion">Conclusion & Future Work</a>
</nav>
<main>
<section id="overview">
<h2>Project Overview</h2>
<p>The Cardio Visualizer integrates real-time physiological monitoring into existing gym equipment, specifically treadmills and stair-climbers. It features a compact and modular design utilizing Arduino and MAX30102 sensor technology.</p>
</section>
<section id="design">
<h2>Design & Implementation</h2>
<h3>Hardware Architecture</h3>
<img src="assets/system_diagram.png" alt="System Diagram" class="responsive-img">
<p>The hardware includes an Arduino, MAX30102 sensor, and OLED display communicating via I2C protocol, allowing seamless data exchange and real-time monitoring.</p>
</section>
<section id="algorithm">
<h2>Software Algorithm and Flowchart</h2>
<img src="assets/flowchart.png" alt="Software Flowchart" class="responsive-img">
<p>The algorithm handles initialization, continuous data acquisition, mapping sensor readings, and graphical representation on an OLED display in real-time.</p>
</section>
<section id="conclusion">
<h2>Conclusion & Future Work</h2>
<p>The project successfully demonstrated real-time heart rate monitoring, with future improvements planned for better display, enhanced data processing, data storage, and refined sensor accuracy for blood oxygen saturation measurements.</p>
</section>
</main>
<footer>
<p>© 2024 Cardio Visualizer Project</p>
</footer>
</body>
</html>