-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
38 lines (35 loc) · 1.57 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
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>IMU Web Client Index</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.8.0/css/bulma.min.css" crossorigin="anonymous">
</head>
<body>
<div class="container">
<section class="section">
<h1 class="title">Examples</h1>
<dl>
<dt><a href="dashboard.html">Dashboard</a></dt>
<dd>List connected devices and sample rate.</dd>
<dt><a href="3d-model.html">3D Model</a></dt>
<dd>A 3D model that tracks the orientation of the IMU.</dd>
<dt><a href="3d-example.html">3D Example</a></dt>
<dd>A simpler version of the 3D model code, useful as a starter
kit.</dd>
<dt><a href="sketch.html">Sketch</a></dt>
<dd>An even simpler example <a href="https://p5js.org">p5.js</a>
sketch, that draws the current values of each of the three
accelerometer axis.</dd>
<dt><a href="barchart.html">Bar Chart</a></dt>
<dd>Display bar charts of all the sensor values.</dd>
<dt><a href="d3-graph.html">D3 Graph</a></dt>
<dd>Uses D3 to graph sensor values over time.</dd>
<dt><a href="highcharts-chart.html">Highcharts Chart</a></dt>
<dd>Uses Highcharts to chart sensor values over time.</dd>
</dl>
</section>
</div>
</body>
</html>