blob: bd53ed1a4ee5b821abc3ac6e34ee3eae15c92dbb (
plain)
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
|
<!DOCTYPE html>
<html>
<head>
<title>smartwatch</title>
<style>
h1 {
text-align: center;
}
a {
text-decoration: none;
}
#navigation {
width: 236px;
margin: 10px auto;
}
#navigation ul li {
display: inline-block;
padding: 8px;
border-left: 1px solid black;
}
#navigation ul li:first-child {
border-left: none;
}
#container {
width: 700px;
margin: 10px auto;
}
.vpanel {
padding: 2%;
width: 45.5%;
float: left;
}
.vpanel:last-child {
border-left: 1px solid black;
}
</style>
</head>
<body>
<h1>smartwatch</h1>
<div id="navigation">
<ul>
<li><a href="https://github.com/tcsullivan/smartwatch">Github</a></li>
<li><a href="https://bitgloo.com/projects">Other work</a></li>
</ul>
</div>
<div id="container">
<div class="vpanel">
<h3>Timeline</h3>
<p><b>Feb. 14th: </b>Began the smartwatch project.</p>
<p><b>Feb. 21st: </b>Ordered parts for the watch.</p>
<p><b>Feb. 27st: </b>Parts arrived, tested Bluetooth functionality.</p>
<p><b>Mar. 11th: </b>Created the Github repository. Got the display and clock running.</p>
<p><b>Mar. 14th: </b>Began work on the Android application, able to set the watch's time and send messages.</p>
<p><b>Mar. 25th: </b>Ordered the touch sensor, solar panel, and vibration motor.</p>
<p><b>Mar. 30th: </b>Finished touch sensor support.</p>
</div>
<div class="vpanel">
<h3>Diagram</h3>
<img src="diagram.png"/>
</div>
</div>
</body>
</html>
|