forked from osteele/imu-client-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbarchart.html
25 lines (19 loc) · 780 Bytes
/
barchart.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>IMU Bar Chart</title>
<link rel="stylesheet" href="styles.css">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/build/dat.gui.min.js" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/paho-mqtt.js" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/lib/p5.min.js" crossorigin="anonymous"></script>
</head>
<body>
</body>
<script type="module">
import * as imuConnection from 'https://cdn.jsdelivr.net/npm/[email protected]/index.js';
window.imuConnection = imuConnection;
</script>
<script src="./js/barchart.js"></script>
</html>