aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortcsullivan <tullivan99@gmail.com>2019-03-31 22:21:49 -0400
committertcsullivan <tullivan99@gmail.com>2019-03-31 22:21:49 -0400
commit904553177639d9840ee345d17123215d1bd02423 (patch)
tree4338ae79b50880a1b91e8d0aad8ed2b149a592ae
parentf986c858e54d9be72020ae2d7319e70eab6de17d (diff)
added project documentation
-rw-r--r--doc/diagram.pngbin0 -> 4136 bytes
-rw-r--r--doc/index.html64
2 files changed, 64 insertions, 0 deletions
diff --git a/doc/diagram.png b/doc/diagram.png
new file mode 100644
index 0000000..e43626a
--- /dev/null
+++ b/doc/diagram.png
Binary files differ
diff --git a/doc/index.html b/doc/index.html
new file mode 100644
index 0000000..bd53ed1
--- /dev/null
+++ b/doc/index.html
@@ -0,0 +1,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>
+