view service/laundry/index.html @ 93:c314196f6164

laundry status display Ignore-this: 2152a4e585894a68a40042849d7200be
author drewp@bigasterisk.com
date Sat, 24 Aug 2013 22:11:55 -0700
parents 51ec2baf57be
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>