-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgui.html
More file actions
76 lines (62 loc) · 2.92 KB
/
gui.html
File metadata and controls
76 lines (62 loc) · 2.92 KB
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
68
69
70
71
72
73
74
75
76
<!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 - Graphical User Interface</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">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" class="current">GUI</a
><a href="programming.html">Programming</a>
</div>
</nav>
</header>
<section>
<h1 class="postheading">Graphical User Interface</h1>
<p>
There is a Graphical User Interface (GUI) available to use
with the DaisyDriver in combination with a
<a href="https://gitlab.com/openflexure/openflexure-microscope/">WaterScope (Openflexure
Microscope)</a> for time-lapse imaging. The GUI comes in three flavours.
</p>
<p>
<a href="https://github.com/DaisyDriver/DaisyGUI"><b>DaisyGUI</b></a> is the standard version
of the GUI. It has a preview feed, manual image capture, manual motor control, and extensive
timed image capture capabilities. For instance, it can be used to quickly find an experimental
area of interest and start a routine of capturing a certain number of images at user-specified time
intervals.
</p>
<p>
<a href="https://github.com/DaisyDriver/DaisyGUI-Enlightened"><b>DaisyGUI-Enlightened</b></a>
is the same as the standard version but with the added functionality that a small light can
be switched on just before images are captured, which is useful for some types of experiments.
</p>
<p>
<a href="https://github.com/DaisyDriver/DaisyLiteGUI"><b>DaisyLiteGUI</b></a> is a reduced GUI
optimised for use on a Raspberry Pi touch screen interface (e.g.
<a href="https://www.raspberrypi.org/products/raspberry-pi-touch-display/">the official Raspberry
Pi Touch</a>). It features a preview camera feed, manual image capture, and motor control.
</p>
</section>
</div>
<footer>
<p>Site code by Jonathan Louis Kaplan and Fergus Riche under MIT License unless otherwise stated.</p>
</footer>
</body>
</html>