-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (30 loc) · 1.37 KB
/
index.html
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
<!--
💓HRM Extension - Heart Rate Monitor
Chrome Extension Project
Projeto de uma extensão Chrome informando em tempo real a taxa de frequência cardiaca conectada via Bluetooth.
Por Gustavo Kennedy Renkel
-->
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HRM Extension - Heart Rate Monitor</title>
<meta name="description" content="Repositório do projeto de criar uma extensão Chrome informando em tempo real a taxa de frequência cardiaca conectada via Bluetooth. Monitor a heart rate sensor with a Web Bluetooth app.">
<link rel="icon" sizes="192x192" href="favicon.png">
<meta name="keywords" content="WebBluetoothCG, Hearth Sensor, Bluetooth, Sensor de Frequência Cardíaca, JavaScript">
<meta name="author" content="Gustavo Kennedy Renkel">
<link rel="stylesheet" href="estilo.css">
</head>
<body>
<div id="container">
<img src="favicon.png" width="100px" /><br/>
<h1>HRM Extension<br> Heart Rate Monitor</h1>
<p>Por <a href="https://blog.renkel.com.br" target="_Blank">Gustavo Kennedy Renkel</a></p>
<div id="textoStatus"><u>Clique para emparelhar</u> ❤</div>
<canvas id="waves"></canvas>
</div>
<script src="sensorFrequencia.js"></script>
<script src="app.js"></script>
</body>
</html>