-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathlaundrymon.html
80 lines (52 loc) · 3.04 KB
/
laundrymon.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
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<!-- CSS Template from http://www.csstemplatesfree.org/jengo.html -->
<html lang="en">
<head>
<meta charset="utf-8">
<title>Laundry Monitor</title>
<link rel="stylesheet" href="assets/styles/style.css" />
<!--[if IE 6]>
<link rel="stylesheet" href="assets/styles/ie6.css" />
<![endif]-->
<!--[if IE 7]>
<link rel="stylesheet" href="assets/styles/ie7.css" />
<![endif]-->
<!--[if IE 8]>
<link rel="stylesheet" href="assets/styles/ie8.css" />
<![endif]-->
</head>
<body>
<div id="wrap">
<div id="header">
<h1><a href=".." title="Home">Greg Schafer</a></h1>
<h2>Student</h2>
</div><!--end header-->
<div id="embed">
<h3>Arduino Laundry Monitor (In Progress)</h3>
</div><!--end intro-->
<div id="main">
<div id="content">
<p class="service-title first"><em>What</em></p>
<p>I got tired of walking across the building over and over one day, always finding the laundry machines taken. So, I decided to set up some Arduinos with a wifi shield and make a website to show laundry machine usage/status and, maybe, mobile notifications for when your laundry finishes. The biggest remaining unknown is how to detect current (or at least, when the machine is running) without spending lots of money on current monitors or other expensive sensors.</p>
<p class="service-title"><em>Tech</em></p>
<p><ul>
<li>Python with <a href="http://werkzeug.pocoo.org/">Werkzeug</a> to expose RESTful web service endpoints and <a href="http://docs.python.org/library/sqlite3.html">sqlite3</a> for data persistence</li>
<li><a href="http://www.arduino.cc/">Arduino</a> with <a href="http://asynclabs.com/store?page=shop.product_details&flypage=flypage.tpl&product_id=26&category_id=6">WiShield 2.0</a> and <a href="http://www.glacialwanderer.com/hobbyrobotics/?p=291">radio transmitter + receiver</a> for communication</li>
</ul></p>
<p class="service-title"><em>When</em></p>
<p>(Inaccurate estimates for) Progress so far:<ul>
<li>Web service endpoints for Arduino: 80%</li>
<li>Web service endpoints for webpage: 20%</li>
<li>Arduino communication (wifi/radio code): 60%</li>
<li>Arduino data collection (current monitoring hardware): 0% (currently researching options)</li>
</ul></p>
</div><!--end content-->
</div><!--end main-->
<div id="footer">
<p><span class="twitter"><a href="https://github.com/grschafer">GitHub</a> / <a href="http://www.linkedin.com/in/grschafer">LinkedIn</a> / <a href="https://twitter.com/#!/grschafer">Twitter</a></span></p>
</div><!--end footer-->
</div><!--end wrap-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.3/jquery.min.js"></script>
<script src="assets/js/jquery.custom.js"></script>
</body>
</html>