view service/laundry/index.html @ 898:8a5312d5b5eb

laundry status display Ignore-this: 2152a4e585894a68a40042849d7200be darcs-hash:20130825051155-312f9-fdfec83b90a4b7eff0573f56441cebbdfe19298f
author drewp <drewp@bigasterisk.com>
date Sat, 24 Aug 2013 22:11:55 -0700
parents d4a97803a66e
children 9ea3ea4f382f
line wrap: on
line source

<!doctype html>
<html lang="en" ng-app>
  <head>
    <title>laundry pi</title>
    <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.0rc1/angular.min.js"></script>
    <script src="gui.js"></script>
  </head>
  <body ng-controller="Ctrl">
    <h1>laundry room pi</h1>
    <div>
      <div>motion: {{status.motion}}</div>
      <div>switch1: {{status.switch1}}</div>
      <div>switch2: {{status.switch2}}</div>
      <div>switch3: {{status.switch3}}</div>
      <div>doorClosed: {{status.doorClosed}}</div>
      <div>orange led: {{status.led}}</div>
    </div>
    <div>Status: {{status | json}}</div>
  </body>
</html>