comparison service/bedroomArduino/index.xhtml @ 834:a87cae710556

bedroomarduino project started. web server isn't ready Ignore-this: 892495965fde1ee17162505d50222f81 darcs-hash:20120418045319-312f9-fa3fc17f9d94881c257ebee128ca5d8623cb4d94.gz
author drewp <drewp@bigasterisk.com>
date Tue, 17 Apr 2012 21:53:19 -0700
parents
children 1fada3a61c5f
comparison
equal deleted inserted replaced
833:d337de14235d 834:a87cae710556
1 <?xml version="1.0" encoding="utf-8"?>
2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
3 "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
4 <html xmlns="http://www.w3.org/1999/xhtml">
5 <head>
6 <title>bedroom controls</title>
7 <style type="text/css" media="all">
8 /* <![CDATA[ */
9 .section {
10 margin: 10px;
11 padding: 10px;
12 border: 1px solid black;
13 }
14 /* ]]> */
15 </style>
16
17 </head>
18 <body>
19
20 <div class="section">
21 <button>Alarm check</button>
22 </div>
23
24 <div class="section">
25 Speaker selector: <span>pillow</span>
26 <div><button>Speakers</button></div>
27 <div><button>Pillow</button></div>
28 </div>
29
30 <div class="section">
31 Vol request: <button>+1</button> <button>-1</button>
32 </div>
33
34 <div class="section">
35 Output volume: <span data-text="volume">35%</span>
36 </div>
37
38 <div class="section">
39 Sound effects:
40
41 <div>lights up <button>play</button></div>
42 <div>lights down <button>play</button></div>
43 <div>pillow spkr <button>play</button></div>
44 <div>room spkr <button>play</button></div>
45 </div>
46
47 <div class="section">
48 Podcast:
49 </div>
50
51 <div class="section">
52 Music:
53 </div>
54
55 <div class="section">
56 Lights:
57
58 Tower LED:
59 Headboard 1:
60 Headboard 2:
61 Headboard 3:
62 Headboard 4:
63 Corner:
64 Red ball:
65 Ceiling:
66 </div>
67
68
69
70 <script src="knockout-2.0.0.js" type="text/javascript"/>
71 <script src="jquery.min.js" type="text/javascript"/>
72 <script type="text/javascript">
73 // <![CDATA[
74 $(function () {
75 ko.applyBindings({
76 volume: "36%"
77 });
78 });
79 // ]]>
80 </script>
81 </body>
82 </html>