-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (40 loc) · 893 Bytes
/
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
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html>
<head>
<title>Blood Pressure Monitor Analyzer</title>
<script src="serial.js"></script>
<script src="bpa_protocol.js"></script>
<script src="runner.js"></script>
</head>
<body>
<p>
<button id="connect">Connect</button><span id="status"></span>
</p>
<table border="1px">
<thead>
<tr>
<th>Patient ID</th>
<th>Device Date</th>
</tr>
</thead>
<tbody>
<tr>
<td id="bpa_patient_id"> </td>
<td id="bpa_device_date"> </td>
</tr>
</tbody>
</table>
<table border="1px">
<thead>
<tr>
<th>Date Time</th>
<th>SYS. (mmHg)</th>
<th>DIA. (mmHg)</th>
<td>PUL. (min)</th>
</tr>
</thead>
<tbody id="bpa_patient_data">
</tbody>
</p>
</body>
</html>