-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
752 lines (749 loc) · 42.9 KB
/
index.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
<!DOCTYPE HTML>
<html>
<head>
<title>#HackTheHouse</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="style/notman.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.4.7/angular.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular-ui-bootstrap/0.14.3/ui-bootstrap-tpls.min.js"></script>
<script type="text/javascript" src="js/notman.js"></script>
</head>
<body ng-app="notman">
<div ng-controller="InteractionCtrl">
<nav class="navbar navbar-default" role="navigation">
<div class="navbar-header">
<button type="button" class="navbar-toggle"
ng-init="navCollapsed = true"
ng-click="navCollapsed = !navCollapsed">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="http://maison-notman-house.github.io">
#HackTheHouse
</a>
</div>
<div class="collapse navbar-collapse" ng-class="!navCollapsed && 'in'"
ng-click="navCollapsed = true">
<ul class="nav navbar-nav navbar-right">
<li class="dropdown" dropdown on-toggle="toggled(open)">
<a href class="dropdown-toggle" dropdown-toggle role="button"
data-toggle="dropdown" aria-haspopup="true"
aria-expanded="false">
Quick links <span class="caret"></span>
</a>
<ul class="dropdown-menu">
<li>
<a href="http://notman.ca/" target="_blank">
Notman House
</a>
</li>
</ul>
</li>
</ul>
</div>
</nav>
<!--------------------------------------------------------------------->
<!----- This is the start of the content section ---------------------->
<!--------------------------------------------------------------------->
<div class="container-fluid">
<img src="images/hackthehouse-logo.jpg" class="img-responsive">
<p> <!-- Perhaps a description here in future? --> </p>
<uib-tabset>
<!----- About tab ----------------------------------------------->
<uib-tab heading="About">
<div class="row">
<div class="col-md-8">
<h1> Overview </h1>
<p> #HacktheHouse is a first of its kind project that will bring together the Montreal Innovation community to respond to some of the biggest challenges facing existing industries like real-estate and building construction, together with the emerging solutions being developed by large companies and startups alike working to develop technological solutions that will make our infrastructure, 'smarter', easier to manage, and connected with the world. </p>
<h1> Directory <small> Everything in its place </small> </h1>
<p> This page, <a href="http://maison-notman-house.github.io/" target="_blank">maison-notman-house.github.io</a> serves as a community-managed information repository for the project. Navigate using the tabs above. </p>
<p> Kindly use the channels below as prescribed. </p>
<div class="row">
<div class="col-sm-12 col-md-6">
<h2> notman.org <small> Official site </small> </h2>
<p> The <i>official</i> #HackTheHouse page is hosted at <a href="http://notman.org/hackthehouse/" target="_blank">notman.org/hackthehouse/</a> </p>
<h2> Eventbrite <small> Registration </small> </h2>
<ul>
<li> <a href="http://www.eventbrite.ca/e/hackthehouse-1-le-corps-the-body-tickets-22495041274" target="_blank">#HackTheHouse 1: The Body</a> March 11-13, 2016
<li> <a href="https://www.eventbrite.ca/e/hackthehouse-meetup-2-tickets-24939512754" target="_blank">#HackTheHouse Meetup</a> May 16, 2016
<li> <a href="https://www.eventbrite.ca/e/hackthehouse-meetup-tickets-25797616365" target="_blank">#HackTheHouse Meetup</a> June 27, 2016
<li> <a href="https://www.eventbrite.ca/e/hackthehouse-2-le-coeur-the-heart-tickets-26756963799" target="_blank">#HackTheHouse 2: The Heart</a> July, 2016
<li> <a href="https://www.eventbrite.ca/e/hackthehouse-3-le-cerveau-the-brain-tickets-29014721814" target="_blank">#HackTheHouse 3: The Brain</a> November 11-13, 2016
<li> <a href="https://www.eventbrite.ca/e/hackthehouse-3-the-end-la-fin-tickets-30254077761" target="_blank">#HackTheHouse 4: The End</a> January 20-22, 2017
</ul>
</div>
<div class="col-sm-12 col-md-6">
<h2> Slack <small> Communication </small> </h2>
<p> Participants and collaborators are encouraged to use <a href="https://hackthehouseteam.slack.com" target="_blank">hackthehouseteam.slack.com</a> as the primary communication channel. </p>
<h2> GitHub <small> Development </small> </h2>
<p> Participants and collaborators are encouraged to use <a href="https://github.com/maison-notman-house" target="_blank">github.com/maison-notman-house</a> as their repository for development. </p>
</div>
</div>
</div>
<div class="col-md-4">
<a class="twitter-timeline" href="https://twitter.com/hashtag/HackTheHouse" data-widget-id="797984135650414592">#HackTheHouse Tweets</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+"://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
</div>
</div>
</uib-tab>
<!----- Dashboards tab ------------------------------------------>
<uib-tab heading="Dashboards">
<div class="row">
<div class="col-md-6">
<h1> Digital Signage <small>installations</small> </h1>
<h2> Entance Dashboard </h2>
<p> Large kiosk screen that faces visitors as they pass through the main entrance doors. Driven by Chromebox. </p>
<p><a href="https://github.com/maison-notman-house/notman-entrance-dashboard" target="_blank"> Code on GitHub </a></p>
<a href="http://notman-entrance-dashboard.netlify.com/" target="_blank">
<img src="images/screenshot-notman-entrance-dashboard.jpg"
class="img-responsive">
</a>
<h2> OSMO Café Dashboard <small>by reelyActive</small> </h2>
<p> 32" screen mounted behind the café bar, visible to almost all café occupants. Driven by Raspberry Pi 3. </p>
<p><a href="https://github.com/maison-notman-house/notman-reelyactive-dashboard" target="_blank"> Code on GitHub </a></p>
<a href="https://maison-notman-house.github.io/notman-reelyactive-dashboard/" target="_blank">
<img src="images/screenshot-notman-reelyactive-dashboard.jpg"
class="img-responsive">
</a>
<h2> SS Dashboard </h2>
<p> 32" screen mounted next to the stairwell providing access to all of Notman House. Visible at a distance after visitors pass through the main entrance. Driven by Chromebit. </p>
<p><a href="https://github.com/maison-notman-house/notman-ss-dashboard" target="_blank"> Code on GitHub </a></p>
<a href="https://maison-notman-house.github.io/notman-ss-dashboard/" target="_blank">
<img src="images/screenshot-notman-ss-dashboard.jpg"
class="img-responsive">
</a>
<h2> Stairwell Dashboard </h2>
<p> 32" screen mounted inside main stairwell above door to main floor (1st floor). Visible as visitors climb stairs. Driven by Raspberry Pi 3. </p>
<p><a href="https://github.com/maison-notman-house/notman-stairwell-dashboard" target="_blank"> Code on GitHub </a></p>
<a href="https://maison-notman-house.github.io/notman-stairwell-dashboard/" target="_blank">
<img src="images/screenshot-notman-stairwell-dashboard.jpg"
class="img-responsive">
</a>
<h2> 1st and 2nd Floor Dashboards </h2>
<p> 32" screens mounted next to main stairwell on the first and second floors. The first is visible as visitors return from the mansion. The second is visible from the kitchen. Each driven by Chromebit. </p>
<p><a href="https://github.com/maison-notman-house/notman-entrance-dashboard" target="_blank"> Code on GitHub </a></p>
<a href="http://notman-entrance-dashboard.netlify.com/?location=campus-1" target="_blank">
<img src="images/screenshot-notman-1st-dashboard.jpg"
class="img-responsive">
</a>
<br>
<a href="http://notman-entrance-dashboard.netlify.com/?location=campus-2" target="_blank">
<img src="images/screenshot-notman-2nd-dashboard.jpg"
class="img-responsive">
</a>
<br>
</div>
<div class="col-md-6">
<h1> Other Dashboards <small>on the web</small> </h1>
<h2> Tonal Presence </h2>
<p><a href="https://github.com/maison-notman-house/notman-tonal-presence" target="_blank"> Code on GitHub </a></p>
<a href="https://maison-notman-house.github.io/notman-tonal-presence/" target="_blank">
<img src="images/screenshot-notman-tonal-presence.jpg"
class="img-responsive">
</a>
<h2> Netatmo Dashboard </h2>
<p><a href="https://github.com/maison-notman-house/notman-netatmo-dashboard" target="_blank"> Code on GitHub </a></p>
<a href="https://maison-notman-house.github.io/notman-netatmo-dashboard/" target="_blank">
<img src="images/screenshot-notman-netatmo-dashboard.jpg"
class="img-responsive">
</a>
<h2> Initial State </h2>
<p><a href="https://www.initialstate.com/workswith/" target="_blank"> Integrations </a></p>
<a href="https://app.initialstate.com/#/tiles/87d6da51-e807-41ec-aa18-a6140182e27f" target="_blank">
<img src="images/screenshot-initial-state-dashboard.jpg"
class="img-responsive">
</a>
<h2> Proposed WiFi Landing Page </h2>
<p><a href="https://github.com/maison-notman-house/notman-wifi-landing-page" target="_blank"> Code on GitHub </a></p>
<a href="https://maison-notman-house.github.io/notman-wifi-landing-page/" target="_blank">
<img src="images/screenshot-wifi-landing-page.jpg"
class="img-responsive">
</a>
<br>
</div>
</div>
</uib-tab>
<!----- Datasets tab -------------------------------------------->
<uib-tab heading="Datasets">
<div class="row">
<div class="col-md-6">
<h1> Datasets <small> to crunch </small> </h1>
<h2> Netatmo environmental data </h2>
<ul>
<li> <a href="datasets/netatmo/M307-170120.csv"> M307 </a>
(3rd floor) through 20 01 17
<li> <a href="datasets/netatmo/M234-170120.csv"> M234 </a>
(2nd floor) through 20 01 17
<li> <a href="datasets/netatmo/M134-170120.csv"> M134 </a>
(1st floor) through 20 01 17
<li> <a href="datasets/netatmo/M034-170120.csv"> M034 </a>
(Café) through 20 01 17
<li> <a href="datasets/netatmo/Outdoor-170120.csv"> Outdoor </a>
(Outdoor) through 20 01 17
</ul>
<h2> Compiled Datasets </h2>
<ul>
<li> Physical presences and social impressions
<a href="datasets/notman-physical-social-impressions-jun-oct-2016.xlsx"> XLSX </a> |
<a href="datasets/notman-physical-social-impressions-jun-oct-2016.csv"> CSV </a>
</ul>
</div>
<div class="col-md-6">
<h1> Occupants </h1>
<p><a href="https://github.com/maison-notman-house/notman-occupants" target="_blank"> Code on GitHub </a></p>
<a href="https://maison-notman-house.github.io/notman-occupants" target="_blank">
<img src="images/screenshot-notman-occupants.jpg"
class="img-responsive">
</a>
<p> </p>
</div>
</div>
</uib-tab>
<!----- Resources tab -------------------------------------------->
<uib-tab heading="Resources">
<div class="row">
<div class="col-md-6">
<h1> Style <small> is standard </small> </h1>
<p><a href="assets/notman-style-guide.pdf" target="_blank"> Style Guide </a></p>
</div>
<div class="col-md-6">
</div>
</div>
</uib-tab>
<!----- APIs tab ------------------------------------------------>
<uib-tab heading="APIs">
<h1> Unified API <small> one API to query them all </small> </h1>
<p> A unified API was proposed at the first hackathon and work is in progress. Proposed queries include: </p>
<ul>
<li> how many people were in a given room over a given period?
<li> who is in the house?
<li> where are the people in the house?
<li> what is a given sensor value in a given room?
</ul>
<table class="table table-hover">
<caption> CURRENTLY IMPLEMENTED API ROUTES </caption>
<thead>
<tr>
<th> Type </th>
<th> Route </th>
<th> Description </th>
</tr>
</thead>
<tbody>
<tr>
<td> Environmental </td>
<td> <a href="https://notman.herokuapp.com/api/netatmo/environment" target="_blank"> https://notman.herokuapp.com/api/netatmo/environment </a> </td>
<td> Returns, as JSON, the most recent sensor values collected on all the Netatmo sensors in the house (see Sensors tab). Used by <a href="https://maison-notman-house.github.io/notman-netatmo-dashboard/" target="_blank">notman-netatmo-dashboard</a>. </td>
</tr>
</tbody>
</table>
<h1> Partner APIs </h1>
<p> Click on the partners below for more information on their APIs. </p>
<div class="row">
<div class="col-sm-12 col-md-6">
<uib-accordion>
<!----- Bubbles APIs -------------------------------------->
<uib-accordion-group heading="Bubbles Company (The)">
<table class="table table-hover">
<tr>
<th> API Doc </th>
<td> <a href="http://developers.my-bubbles.com/" target="_blank">developers.my-bubbles.com</a> </td>
</tr>
<tr>
<th class="active"> Company Webpage </th>
<td> <a href="http://my-bubbles.com/"
target="_blank">my-bubbles.com</a> </td>
</tr>
</table>
</uib-accordion-group>
<!----- DasBox APIs --------------------------------------->
<uib-accordion-group heading="DasBox">
<table class="table table-hover">
<tr>
<th> API Doc </th>
<td> <a href="http://api.dasbox.io/"
target="_blank">api.dasbox.io</a> </td>
</tr>
<tr>
<th class="active"> Company Webpage </th>
<td> <a href="http://dasbox.io/"
target="_blank">dasbox.io</a> </td>
</tr>
</table>
</uib-accordion-group>
<!----- Distech Controls APIs ----------------------------->
<uib-accordion-group heading="Distech Controls">
<table class="table table-hover">
<tr>
<th> API Doc </th>
<td> Coming soon... </td>
</tr>
<tr>
<th class="active"> Company Webpage </th>
<td> www.distech-controls.com
<a href="http://www.distech-controls.com/en/ca/"
target="_blank"> English </a> |
<a href="http://www.distech-controls.com/fr/ca/"
target="_blank"> Français </a>
</td>
</tr>
</table>
</uib-accordion-group>
<!----- mnubo APIs ---------------------------------------->
<uib-accordion-group heading="mnubo">
<table class="table table-hover">
<tr>
<th> SDKs </th>
<td> <a href="https://github.com/mnubo"
target="_blank">github.com/mnubo</a> </td>
</tr>
<tr>
<th> Notman API </th>
<td> <a href="http://reelyactive.sandbox.mnubo.com"
target="_blank">reelyactive.sandbox.mnubo.com</a> </td>
</tr>
<tr>
<td> → Client id </td>
<td> <tt> Rq5XlgEovIlnT7iON2lco9yhHMQ3nH8IrdBwFltdRsw7XkmoHA </tt> </td>
</tr>
<tr>
<td> → Client secret </td>
<td> <tt> t8wlAN30cpgOHSgz0W5Lc1Tcj8qe0RJsybHng8mMuuvbKcbWuG </tt> </td>
</tr>
<tr>
<th class="active"> Company Webpage </th>
<td> <a href="http://mnubo.com/"
target="_blank">mnubo.com</a> </td>
</tr>
</table>
</uib-accordion-group>
</uib-accordion>
</div>
<div class="col-sm-12 col-md-6">
<uib-accordion>
<!----- MySeat APIs --------------------------------------->
<uib-accordion-group heading="MySeat">
<table class="table table-hover">
<tr>
<th> Dashboard </th>
<td> <a href="https://notman-house.myseat.ca/Map/Live/Alias/Notman_House_18" target="_blank">notman-house.myseat.ca/.../Notman_House_18</a> </td>
</tr>
<tr>
<th> API Doc </th>
<td> <a href="https://notman-house.myseat.ca/apiV2.pdf" target="_blank">PDF</a> </td>
</tr>
<tr>
<th> GET Chairs </th>
<td> <a href="https://notman-house.myseat.ca/APIV2/GetChairs/key/FFLBBcjuJlPQxBJ1l5CcuFTA5yboUR21mDrOGC9f" target="_blank">notman-house.myseat.ca/.../GetChairs/...</a> </td>
</tr>
<tr>
<th> GET Raw Data </th>
<td> <a href="https://notman-house.myseat.ca/APIV2/GetRawData/key/FFLBBcjuJlPQxBJ1l5CcuFTA5yboUR21mDrOGC9f" target="_blank">notman-house.myseat.ca/.../GetRawData/...</a> </td>
</tr>
<tr>
<th class="active"> Company Webpage </th>
<td> <a href="http://myseat.ca" target="_blank">myseat.ca</a> </td>
</tr>
</table>
</uib-accordion-group>
<!----- reelyActive APIs ---------------------------------->
<uib-accordion-group heading="reelyActive">
<table class="table table-hover">
<tr>
<th> #HackTheHouse </th>
<td> <a href="http://reelyactive.github.io/hackthehouse.html" target="_blank">Quick Start</a> </td>
</tr>
<tr>
<th> API Doc </th>
<td> <a href="http://context.reelyactive.com/api.html" target="_blank">context.reelyactive.com/api.html</a> </td>
</tr>
<tr>
<th> Contextual API </th>
<td> <a href="http://www.hyperlocalcontext.com/contextat/directory/notman" target="_blank">www.hyperlocalcontext.com/contextat/directory/notman</a> </td>
</tr>
<tr>
<th> Websockets API </th>
<td> <a href="http://www.hyperlocalcontext.com/notman" target="_blank">www.hyperlocalcontext.com/notman</a> (Connect with socket.io) </td>
</tr>
<tr>
<th> smartspac.es </th>
<td> <a href="http://smartspac.es/notman" target="_blank">smartspac.es/notman</a> </td>
</tr>
<tr>
<th> reelyApp </th>
<td> <a href="https://play.google.com/store/apps/details?id=com.reelyactive.reelyapp" target="_blank">Android</a> | iOS </td>
</tr>
<tr>
<th class="active"> Company Webpage </th>
<td> <a href="http://context.reelyactive.com" target="_blank">context.reelyactive.com</a> </td>
</tr>
</table>
</uib-accordion-group>
<!----- Ubios APIs ---------------------------------------->
<uib-accordion-group heading="Ubios">
<table class="table table-hover">
<tr>
<th class="active"> Company Webpage </th>
<td> <a href="http://www.ubios.co/"
target="_blank">ubios.co</a> </td>
</tr>
</table>
</uib-accordion-group>
</uib-accordion>
</div>
</div>
</uib-tab>
<!----- Sensors tab ----------------------------------------------->
<uib-tab heading="Sensors">
<h1> Deployed Sensors </h1>
<div class="row">
<div class="col-md-6">
<table class="table table-hover">
<caption> DEPLOYED NEARABLES TEMPERATURE/MOTION SENSORS </caption>
<thead>
<tr>
<th> 64-bit ID </th>
<th> Description </th>
<th> Location </th>
<th> State </th>
</tr>
</thead>
<tbody>
<tr>
<td> <tt> 35dd95220da1a184 </tt> </td>
<td> Teal Door </td>
<td> M307 </td>
<td> To come... </td>
</tr>
<tr>
<td> <tt> 82a3b63e3bf09d49 </tt> </td>
<td> Mauve Luggage </td>
<td> M301X </td>
<td> To come... </td>
</tr>
<tr>
<td> <tt> e79ad1ae6d2127e4 </tt> </td>
<td> Teal Door </td>
<td> M234 </td>
<td> To come... </td>
</tr>
<tr>
<td> <tt> 201a1c507e60ee9c </tt> </td>
<td> Mauve Luggage </td>
<td> M231X </td>
<td> To come... </td>
</tr>
<tr>
<td> <tt> b2d5d73799044c80 </tt> </td>
<td> Pink Fridge </td>
<td> M2-Freezer </td>
<td> To come... </td>
</tr>
<tr>
<td> <tt> bd50e77c551f034c </tt> </td>
<td> Pink Fridge </td>
<td> M2-Fridge </td>
<td> To come... </td>
</tr>
<tr>
<td> <tt> 12130aa1975177df </tt> </td>
<td> Pink Door </td>
<td> M134 </td>
<td> To come... </td>
</tr>
<tr>
<td> <tt> 0a5f7502b7b9788e </tt> </td>
<td> Blue Shoe </td>
<td> M139X </td>
<td> To come... </td>
</tr>
<tr>
<td> <tt> b92cd7c1cd681566 </tt> </td>
<td> Mauve Luggage </td>
<td> M130X </td>
<td> To come... </td>
</tr>
<tr>
<td> <tt> b4522194048a10a4 </tt> </td>
<td> Blue Car </td>
<td> M031 </td>
<td> To come... </td>
</tr>
<tr>
<td> <tt> 553fd581e00ee1ae </tt> </td>
<td> Blue Car </td>
<td> M031 </td>
<td> To come... </td>
</tr>
<tr>
<td> <tt> 6d3ad3b00775baad </tt> </td>
<td> Mauve Bike </td>
<td> M036X </td>
<td> To come... </td>
</tr>
<tr>
<td> <tt> 0efca4f3710a0b8a </tt> </td>
<td> Mauve Blank </td>
<td> TBD </td>
<td> To come... </td>
</tr>
<tr>
<td> <tt> ea2e931bd7afb79b </tt> </td>
<td> Pink Fridge </td>
<td> TBD </td>
<td> To come... </td>
</tr>
<tr>
<td> <tt> f3ea6097fff6d857 </tt> </td>
<td> Radioactive Bed </td>
<td> TBD </td>
<td> To come... </td>
</tr>
<tr>
<td> <tt> 571bad2436b7f01f </tt> </td>
<td> Pink Bike </td>
<td> TBD </td>
<td> To come... </td>
</tr>
<tr>
<td> <tt> 25d7add5b5129027 </tt> </td>
<td> Pink Shoe </td>
<td> TBD </td>
<td> To come... </td>
</tr>
<tr>
<td> <tt> 180563d4c02cce6d </tt> </td>
<td> Blue Chair </td>
<td> TBD </td>
<td> To come... </td>
</tr>
<tr>
<td> <tt> 7536f178d908419e </tt> </td>
<td> Teal Dog </td>
<td> TBD </td>
<td> To come... </td>
</tr>
<tr>
<td> <tt> 8cab10d772131f10 </tt> </td>
<td> Mauve Blank </td>
<td> TBD </td>
<td> To come... </td>
</tr>
<tr>
<td> <tt> e20f9c15abc63fa0 </tt> </td>
<td> Pink Shoe </td>
<td> TBD </td>
<td> To come... </td>
</tr>
<tr>
<td> <tt> d9cff23b4db1711f </tt> </td>
<td> Pink Bike </td>
<td> TBD </td>
<td> To come... </td>
</tr>
<tr>
<td> <tt> 958bca978d3bbcf1 </tt> </td>
<td> Teal Dog </td>
<td> TBD </td>
<td> To come... </td>
</tr>
<tr>
<td> <tt> 1b253d8892b4eb65 </tt> </td>
<td> Blue Chair </td>
<td> TBD </td>
<td> To come... </td>
</tr>
<tr>
<td> <tt> dba4f5fa14f2aeae </tt> </td>
<td> Radioactive Bed </td>
<td> TBD </td>
<td> To come... </td>
</tr>
<tr>
<td> <tt> c0568bd3064dd9a0 </tt> </td>
<td> Pink Blank </td>
<td> TBD </td>
<td> To come... </td>
</tr>
<tr>
<td> <tt> e2cd1c35cce69d91 </tt> </td>
<td> Radioactive Dog </td>
<td> TBD </td>
<td> To come... </td>
</tr>
<tr>
<td> <tt> b264c65dcf6ed7b5 </tt> </td>
<td> Blue Chair </td>
<td> TBD </td>
<td> To come... </td>
</tr>
<tr>
<td> <tt> 5ba93a87676dd5ec </tt> </td>
<td> Teal Car </td>
<td> TBD </td>
<td> To come... </td>
</tr>
<tr>
<td> <tt> 9b3408a07754cbc4 </tt> </td>
<td> Teal Bed </td>
<td> TBD </td>
<td> To come... </td>
</tr>
</tbody>
</table>
<p> See <a href="http://developer.estimote.com/nearables/" target="_blank"> developer.estimote.com/nearables </a> </p>
</div>
<div class="col-md-6">
<table class="table table-hover">
<caption> DEPLOYED NETATMO ENVIRONMENTAL SENSORS </caption>
<thead>
<tr>
<th> Device </th>
<th> Location </th>
<th> State </th>
</tr>
</thead>
<tbody>
<tr>
<td> Indoor Module </td>
<td> M307 </td>
<td> <a href="https://maison-notman-house.github.io/notman-netatmo-dashboard/" target="_blank"> notman-netatmo-dashboard </a> </td>
</tr>
<tr>
<td> Indoor Module </td>
<td> M234 </td>
<td> <a href="https://maison-notman-house.github.io/notman-netatmo-dashboard/" target="_blank"> notman-netatmo-dashboard </a> </td>
</tr>
<tr>
<td> Indoor Module </td>
<td> M134 </td>
<td> <a href="https://maison-notman-house.github.io/notman-netatmo-dashboard/" target="_blank"> notman-netatmo-dashboard </a> </td>
</tr>
<tr>
<td> Indoor Module </td>
<td> M034 </td>
<td> <a href="https://maison-notman-house.github.io/notman-netatmo-dashboard/" target="_blank"> notman-netatmo-dashboard </a> </td>
</tr>
<tr>
<td> Outdoor Module </td>
<td> TBD </td>
<td> <a href="https://maison-notman-house.github.io/notman-netatmo-dashboard/" target="_blank"> notman-netatmo-dashboard </a> </td>
</tr>
</tbody>
</table>
<p> See <a href="https://www.netatmo.com/product/weather/weatherstation" target="_blank"> www.netatmo.com/product/weather/weatherstation </a> </p>
</div>
</div>
</uib-tab>
<!----- reelyActive devices tab ----------------------------------->
<uib-tab heading="reelyActive">
<h1> reelyActive Platform </h1>
<div class="row">
<div class="col-md-6">
<table class="table table-hover">
<caption> REELYACTIVE REELCEIVERS, APIS AND METADATA </caption>
<thead>
<tr>
<th> Directory </th>
<th> Reelceiver ID </th>
<th> Place Metadata </th>
<th> APIs </th>
</tr>
</thead>
<tbody>
<tr>
<td> notman:third:west </td>
<td> <tt>001bc509408100df</tt> </td>
<td> <a href="https://maison-notman-house.github.io/notman-reelyactive-dashboard/places/3w.html" target="_blank">HTML</a> | <a href="https://github.com/maison-notman-house/notman-reelyactive-dashboard/blob/gh-pages/places/3w.html" target="_blank">Source</a> </td>
<td> <a href="http://www.hyperlocalcontext.com/whatat/receiver/001bc509408100df" target="_blank">What at?</a> | <a href="http://www.hyperlocalcontext.com/contextat/receiver/001bc509408100df" target="_blank">Context at?</a> </td>
</tr>
<tr>
<td> notman:third:centre </td>
<td> <tt>001bc5094081010b</tt> </td>
<td> <a href="https://maison-notman-house.github.io/notman-reelyactive-dashboard/places/3c.html" target="_blank">HTML</a> | <a href="https://github.com/maison-notman-house/notman-reelyactive-dashboard/blob/gh-pages/places/3c.html" target="_blank">Source</a> </td>
<td> <a href="http://www.hyperlocalcontext.com/whatat/receiver/001bc5094081010b" target="_blank">What at?</a> | <a href="http://www.hyperlocalcontext.com/contextat/receiver/001bc5094081010b" target="_blank">Context at?</a> </td>
</tr>
<tr>
<td> notman:third:east </td>
<td> <tt>001bc5094081010c</tt> </td>
<td> <a href="https://maison-notman-house.github.io/notman-reelyactive-dashboard/places/3e.html" target="_blank">HTML</a> | <a href="https://github.com/maison-notman-house/notman-reelyactive-dashboard/blob/gh-pages/places/3e.html" target="_blank">Source</a> </td>
<td> <a href="http://www.hyperlocalcontext.com/whatat/receiver/001bc5094081010c" target="_blank">What at?</a> | <a href="http://www.hyperlocalcontext.com/contextat/receiver/001bc5094081010c" target="_blank">Context at?</a> </td>
</tr>
<tr>
<td> notman:second:west </td>
<td> <tt>001bc509408100dc</tt> </td>
<td> <a href="https://maison-notman-house.github.io/notman-reelyactive-dashboard/places/2w.html" target="_blank">HTML</a> | <a href="https://github.com/maison-notman-house/notman-reelyactive-dashboard/blob/gh-pages/places/2w.html" target="_blank">Source</a> </td>
<td> <a href="http://www.hyperlocalcontext.com/whatat/receiver/001bc509408100dc" target="_blank">What at?</a> | <a href="http://www.hyperlocalcontext.com/contextat/receiver/001bc509408100dc" target="_blank">Context at?</a> </td>
</tr>
<tr>
<td> notman:second:centre </td>
<td> <tt>001bc509408100dd</tt> </td>
<td> <a href="https://maison-notman-house.github.io/notman-reelyactive-dashboard/places/2c.html" target="_blank">HTML</a> | <a href="https://github.com/maison-notman-house/notman-reelyactive-dashboard/blob/gh-pages/places/2c.html" target="_blank">Source</a> </td>
<td> <a href="http://www.hyperlocalcontext.com/whatat/receiver/001bc509408100dd" target="_blank">What at?</a> | <a href="http://www.hyperlocalcontext.com/contextat/receiver/001bc509408100dd" target="_blank">Context at?</a> </td>
</tr>
<tr>
<td> notman:second:east </td>
<td> <tt>001bc509408100de</tt> </td>
<td> <a href="https://maison-notman-house.github.io/notman-reelyactive-dashboard/places/2e.html" target="_blank">HTML</a> | <a href="https://github.com/maison-notman-house/notman-reelyactive-dashboard/blob/gh-pages/places/2e.html" target="_blank">Source</a> </td>
<td> <a href="http://www.hyperlocalcontext.com/whatat/receiver/001bc509408100de" target="_blank">What at?</a> | <a href="http://www.hyperlocalcontext.com/contextat/receiver/001bc509408100de" target="_blank">Context at?</a> </td>
</tr>
<tr>
<td> notman:first:west </td>
<td> <tt>001bc509408100d9</tt> </td>
<td> <a href="https://maison-notman-house.github.io/notman-reelyactive-dashboard/places/1w.html" target="_blank">HTML</a> | <a href="https://github.com/maison-notman-house/notman-reelyactive-dashboard/blob/gh-pages/places/1w.html" target="_blank">Source</a> </td>
<td> <a href="http://www.hyperlocalcontext.com/whatat/receiver/001bc509408100d9" target="_blank">What at?</a> | <a href="http://www.hyperlocalcontext.com/contextat/receiver/001bc509408100d9" target="_blank">Context at?</a> </td>
</tr>
<tr>
<td> notman:first:centre </td>
<td> <tt>001bc509408100da</tt> </td>
<td> <a href="https://maison-notman-house.github.io/notman-reelyactive-dashboard/places/1c.html" target="_blank">HTML</a> | <a href="https://github.com/maison-notman-house/notman-reelyactive-dashboard/blob/gh-pages/places/1c.html" target="_blank">Source</a> </td>
<td> <a href="http://www.hyperlocalcontext.com/whatat/receiver/001bc509408100da" target="_blank">What at?</a> | <a href="http://www.hyperlocalcontext.com/contextat/receiver/001bc509408100da" target="_blank">Context at?</a> </td>
</tr>
<tr>
<td> notman:first:east </td>
<td> <tt>001bc509408100db</tt> </td>
<td> <a href="https://maison-notman-house.github.io/notman-reelyactive-dashboard/places/1e.html" target="_blank">HTML</a> | <a href="https://github.com/maison-notman-house/notman-reelyactive-dashboard/blob/gh-pages/places/1e.html" target="_blank">Source</a> </td>
<td> <a href="http://www.hyperlocalcontext.com/whatat/receiver/001bc509408100db" target="_blank">What at?</a> | <a href="http://www.hyperlocalcontext.com/contextat/receiver/001bc509408100db" target="_blank">Context at?</a> </td>
</tr>
<tr>
<td> notman:cafe </td>
<td> <tt>001bc5094081013d</tt> </td>
<td> <a href="https://maison-notman-house.github.io/notman-reelyactive-dashboard/places/cafe.html" target="_blank">HTML</a> | <a href="https://github.com/maison-notman-house/notman-reelyactive-dashboard/blob/gh-pages/places/cafe.html" target="_blank">Source</a> </td>
<td> <a href="http://www.hyperlocalcontext.com/whatat/receiver/001bc5094081013d" target="_blank">What at?</a> | <a href="http://www.hyperlocalcontext.com/contextat/receiver/001bc5094081013d" target="_blank">Context at?</a> </td>
</tr>
<tr>
<td> notman:cafe </td>
<td> <tt>001bc5094b289f0e</tt> (Raspberry Pi) </td>
<td> <a href="https://maison-notman-house.github.io/notman-reelyactive-dashboard/places/cafe.html" target="_blank">HTML</a> | <a href="https://github.com/maison-notman-house/notman-reelyactive-dashboard/blob/gh-pages/places/cafe.html" target="_blank">Source</a> </td>
<td> <a href="http://www.hyperlocalcontext.com/whatat/receiver/001bc5094b289f0e" target="_blank">What at?</a> | <a href="http://www.hyperlocalcontext.com/contextat/receiver/001bc5094b289f0e" target="_blank">Context at?</a> </td>
</tr>
<tr>
<td> notman:cafe </td>
<td> <tt>001bc50940800028</tt> (Active RFID) </td>
<td> <a href="https://maison-notman-house.github.io/notman-reelyactive-dashboard/places/cafe.html" target="_blank">HTML</a> | <a href="https://github.com/maison-notman-house/notman-reelyactive-dashboard/blob/gh-pages/places/cafe.html" target="_blank">Source</a> </td>
<td> <a href="http://www.hyperlocalcontext.com/whatat/receiver/001bc50940800028" target="_blank">What at?</a> | <a href="http://www.hyperlocalcontext.com/contextat/receiver/001bc50940800028" target="_blank">Context at?</a> </td>
</tr>
</tbody>
</table>
</div>
<div class="col-md-6">
<img src="images/hackthehouse-matterport.jpg"
class="img-responsive">
</div>
</div>
</uib-tab>
</uib-tabset>
</div>
<!--------------------------------------------------------------------->
<!----- This is the end of the content section ------------------------>
<!--------------------------------------------------------------------->
<footer class="footer">
<p> #HackTheHouse </p>
</footer>
</div>
</body>
</html>