Mercurial > code > home > repos > homeauto
view service/bedroomArduino/index.xhtml @ 919:6ee2a90fc816
bugs in async http client. move trig helpers to rdflibtrig, which can work with rdflib 4
Ignore-this: 81dc30256f5d2658e53fce60abea66db
darcs-hash:20130910073852-312f9-f863b729e4c75f160d0740ae9038b5fab084b86b
author | drewp <drewp@bigasterisk.com> |
---|---|
date | Tue, 10 Sep 2013 00:38:52 -0700 |
parents | a87cae710556 |
children | 1fada3a61c5f |
line wrap: on
line source
<?xml version="1.0" encoding="utf-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>bedroom controls</title> <style type="text/css" media="all"> /* <![CDATA[ */ .section { margin: 10px; padding: 10px; border: 1px solid black; } /* ]]> */ </style> </head> <body> <div class="section"> <button>Alarm check</button> </div> <div class="section"> Speaker selector: <span>pillow</span> <div><button>Speakers</button></div> <div><button>Pillow</button></div> </div> <div class="section"> Vol request: <button>+1</button> <button>-1</button> </div> <div class="section"> Output volume: <span data-text="volume">35%</span> </div> <div class="section"> Sound effects: <div>lights up <button>play</button></div> <div>lights down <button>play</button></div> <div>pillow spkr <button>play</button></div> <div>room spkr <button>play</button></div> </div> <div class="section"> Podcast: </div> <div class="section"> Music: </div> <div class="section"> Lights: Tower LED: Headboard 1: Headboard 2: Headboard 3: Headboard 4: Corner: Red ball: Ceiling: </div> <script src="knockout-2.0.0.js" type="text/javascript"/> <script src="jquery.min.js" type="text/javascript"/> <script type="text/javascript"> // <![CDATA[ $(function () { ko.applyBindings({ volume: "36%" }); }); // ]]> </script> </body> </html>