]> code.bitgloo.com Git - clyne/smartwatch.git/commitdiff
added project documentation
authortcsullivan <tullivan99@gmail.com>
Mon, 1 Apr 2019 02:21:49 +0000 (22:21 -0400)
committertcsullivan <tullivan99@gmail.com>
Mon, 1 Apr 2019 02:21:49 +0000 (22:21 -0400)
doc/diagram.png [new file with mode: 0644]
doc/index.html [new file with mode: 0644]

diff --git a/doc/diagram.png b/doc/diagram.png
new file mode 100644 (file)
index 0000000..e43626a
Binary files /dev/null and b/doc/diagram.png differ
diff --git a/doc/index.html b/doc/index.html
new file mode 100644 (file)
index 0000000..bd53ed1
--- /dev/null
@@ -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>
+