-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (55 loc) · 2.36 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="css/default.css" />
<link rel="stylesheet" type="text/css" href="css/responsive_sm.css" />
<link rel="stylesheet" type="text/css" href="css/responsive_md.css" />
<script src="js/utility.js"></script>
<title>DaisyDriver - Open Source Motor Driver</title>
</head>
<body>
<div class="main-container">
<header>
<img src="assets/daisydrivertext.png">
<nav role="navigation">
<div id="dd-imgcontainer">
<img src="assets/reorder-three.svg" / id="dd-img">
</div>
<div id="dd-content">
<a href="index.html" class="current">Home</a
><a href="assembly.html">Assembly</a
><a href="operation.html">Operating</a
><a href="serial.html">Serial Interface</a
><a href="gui.html">GUI</a
><a href="programming.html">Programming</a>
</div>
</nav>
</header>
<section>
<h1 class="postheading">Getting Started</h1>
<p>
Welcome to the DaisyDriver website! DaisyDriver is a motor control system designed
for integrating actuators within a rapid prototyping design process. It was designed
at the University of Cambridge. It has been used for experiments here in the physics department,
and has been used in space.
A publication describing many aspects of the device can be found <a href="">here TBA</a>.
</p>
<p>
This page should help you with any questions you might have when you're getting started.
<h2>FAQs</h2>
<ul>
<li><a href="operation.html">How do I operate the DaisyDriver?</a></li>
<li><a href="programming.html">How do I program the DaisyDriver?</a></li>
<li><a href="assembly.html">How do I assemble the DaisyDriver?</a></li>
<li><a href="gui.html">Is a graphical user interface available?</a></li>
</ul>
</p>
</section>
</div>
<footer>
<p>Site code by Jonathan Louis Kaplan and Fergus Riche under MIT License unless otherwise stated.</p>
</footer>
</body>
</html>