-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path2018-projects.html
More file actions
1475 lines (1473 loc) · 74.7 KB
/
2018-projects.html
File metadata and controls
1475 lines (1473 loc) · 74.7 KB
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
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<title>
2018 Projects - HARDHACK 2021
</title>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type"/>
<meta content="width=device-width, initial-scale=1.0" name="viewport"/>
<link href="https://fonts.googleapis.com/css?family=Karla:400,700|Oswald:700|Roboto+Mono:400,400i,700,700i" rel="stylesheet"/>
<script src="files/theme/MutationObserver.js">
</script>
<style>
.navbar__logo .icon,
.navbar__center .navbar__logo:after {
color: #2990ea !important;
}
.header-prompt .navbar__link--login,
.header-prompt .navbar__link.navbar__link--signup {
color: #666C70 !important;
}
.header-prompt .navbar__link.navbar__link--signup {
box-shadow: inset 0 0 0 2px #C9CDCF !important;
}
</style>
<link href="https://cdn2.editmysite.com/css/sites.css?buildTime=1234" id="wsite-base-style" rel="stylesheet" type="text/css"/>
<link href="https://cdn2.editmysite.com/css/old/fancybox.css?1234" rel="stylesheet" type="text/css"/>
<link href="https://cdn2.editmysite.com/css/social-icons.css?buildtime=1234" media="screen,projection" rel="stylesheet" type="text/css">
<link href="files/main_style.css?1584148138" rel="stylesheet" title="wsite-theme-css" type="text/css"/>
<link href="https://fonts.googleapis.com/css?family=Karla:400,700,400italic,700italic&subset=latin,latin-ext" rel="stylesheet" type="text/css"/>
<link href="https://fonts.googleapis.com/css?family=Oswald:400,300,700&subset=latin,latin-ext" rel="stylesheet" type="text/css"/>
<link href="https://fonts.googleapis.com/css?family=Karla:400,700,400italic,700italic&subset=latin,latin-ext" rel="stylesheet" type="text/css"/>
<link href="https://fonts.googleapis.com/css?family=Oswald:400,300,700&subset=latin,latin-ext" rel="stylesheet" type="text/css"/>
<link href="https://fonts.googleapis.com/css?family=Karla:400,700,400italic,700italic&subset=latin,latin-ext" rel="stylesheet" type="text/css"/>
<style type="text/css">
.wsite-elements.wsite-not-footer:not(.wsite-header-elements) div.paragraph, .wsite-elements.wsite-not-footer:not(.wsite-header-elements) p, .wsite-elements.wsite-not-footer:not(.wsite-header-elements) .product-block .product-title, .wsite-elements.wsite-not-footer:not(.wsite-header-elements) .product-description, .wsite-elements.wsite-not-footer:not(.wsite-header-elements) .wsite-form-field label, .wsite-elements.wsite-not-footer:not(.wsite-header-elements) .wsite-form-field label, #wsite-content div.paragraph, #wsite-content p, #wsite-content .product-block .product-title, #wsite-content .product-description, #wsite-content .wsite-form-field label, #wsite-content .wsite-form-field label, .blog-sidebar div.paragraph, .blog-sidebar p, .blog-sidebar .wsite-form-field label, .blog-sidebar .wsite-form-field label {font-family:"Karla" !important;}
#wsite-content div.paragraph, #wsite-content p, #wsite-content .product-block .product-title, #wsite-content .product-description, #wsite-content .wsite-form-field label, #wsite-content .wsite-form-field label, .blog-sidebar div.paragraph, .blog-sidebar p, .blog-sidebar .wsite-form-field label, .blog-sidebar .wsite-form-field label {}
.wsite-elements.wsite-footer div.paragraph, .wsite-elements.wsite-footer p, .wsite-elements.wsite-footer .product-block .product-title, .wsite-elements.wsite-footer .product-description, .wsite-elements.wsite-footer .wsite-form-field label, .wsite-elements.wsite-footer .wsite-form-field label{}
.wsite-elements.wsite-not-footer:not(.wsite-header-elements) h2, .wsite-elements.wsite-not-footer:not(.wsite-header-elements) .product-long .product-title, .wsite-elements.wsite-not-footer:not(.wsite-header-elements) .product-large .product-title, .wsite-elements.wsite-not-footer:not(.wsite-header-elements) .product-small .product-title, #wsite-content h2, #wsite-content .product-long .product-title, #wsite-content .product-large .product-title, #wsite-content .product-small .product-title, .blog-sidebar h2 {font-weight:700 !important;letter-spacing: 0px !important;}
#wsite-content h2, #wsite-content .product-long .product-title, #wsite-content .product-large .product-title, #wsite-content .product-small .product-title, .blog-sidebar h2 {color:#2a2a2a !important;}
.wsite-elements.wsite-footer h2, .wsite-elements.wsite-footer .product-long .product-title, .wsite-elements.wsite-footer .product-large .product-title, .wsite-elements.wsite-footer .product-small .product-title{}
#wsite-title {font-family:"Oswald" !important;font-weight:700 !important;color:#2a2a2a !important;text-transform: none !important;letter-spacing: 0px !important;}
.wsite-menu-default a {}
.wsite-menu a {}
.wsite-image div, .wsite-caption {font-family:"Karla" !important;}
.galleryCaptionInnerText {}
.fancybox-title {}
.wslide-caption-text {}
.wsite-phone {}
.wsite-headline,.wsite-header-section .wsite-content-title {}
.wsite-headline-paragraph,.wsite-header-section .paragraph {}
.wsite-button-inner {text-transform: none !important;}
.wsite-not-footer blockquote {}
.wsite-footer blockquote {}
.blog-header h2 a {}
#wsite-content h2.wsite-product-title {}
.wsite-product .wsite-product-price a {}
@media screen and (min-width: 767px) {.wsite-elements.wsite-not-footer:not(.wsite-header-elements) div.paragraph, .wsite-elements.wsite-not-footer:not(.wsite-header-elements) p, .wsite-elements.wsite-not-footer:not(.wsite-header-elements) .product-block .product-title, .wsite-elements.wsite-not-footer:not(.wsite-header-elements) .product-description, .wsite-elements.wsite-not-footer:not(.wsite-header-elements) .wsite-form-field label, .wsite-elements.wsite-not-footer:not(.wsite-header-elements) .wsite-form-field label, #wsite-content div.paragraph, #wsite-content p, #wsite-content .product-block .product-title, #wsite-content .product-description, #wsite-content .wsite-form-field label, #wsite-content .wsite-form-field label, .blog-sidebar div.paragraph, .blog-sidebar p, .blog-sidebar .wsite-form-field label, .blog-sidebar .wsite-form-field label {font-size:16px !important;}
#wsite-content div.paragraph, #wsite-content p, #wsite-content .product-block .product-title, #wsite-content .product-description, #wsite-content .wsite-form-field label, #wsite-content .wsite-form-field label, .blog-sidebar div.paragraph, .blog-sidebar p, .blog-sidebar .wsite-form-field label, .blog-sidebar .wsite-form-field label {}
.wsite-elements.wsite-footer div.paragraph, .wsite-elements.wsite-footer p, .wsite-elements.wsite-footer .product-block .product-title, .wsite-elements.wsite-footer .product-description, .wsite-elements.wsite-footer .wsite-form-field label, .wsite-elements.wsite-footer .wsite-form-field label{}
.wsite-elements.wsite-not-footer:not(.wsite-header-elements) h2, .wsite-elements.wsite-not-footer:not(.wsite-header-elements) .product-long .product-title, .wsite-elements.wsite-not-footer:not(.wsite-header-elements) .product-large .product-title, .wsite-elements.wsite-not-footer:not(.wsite-header-elements) .product-small .product-title, #wsite-content h2, #wsite-content .product-long .product-title, #wsite-content .product-large .product-title, #wsite-content .product-small .product-title, .blog-sidebar h2 {font-size:30px !important;}
#wsite-content h2, #wsite-content .product-long .product-title, #wsite-content .product-large .product-title, #wsite-content .product-small .product-title, .blog-sidebar h2 {}
.wsite-elements.wsite-footer h2, .wsite-elements.wsite-footer .product-long .product-title, .wsite-elements.wsite-footer .product-large .product-title, .wsite-elements.wsite-footer .product-small .product-title{}
#wsite-title {font-size:24px !important;}
.wsite-menu-default a {}
.wsite-menu a {}
.wsite-image div, .wsite-caption {}
.galleryCaptionInnerText {}
.fancybox-title {}
.wslide-caption-text {}
.wsite-phone {}
.wsite-headline,.wsite-header-section .wsite-content-title {}
.wsite-headline-paragraph,.wsite-header-section .paragraph {}
.wsite-button-inner {}
.wsite-not-footer blockquote {}
.wsite-footer blockquote {}
.blog-header h2 a {}
#wsite-content h2.wsite-product-title {}
.wsite-product .wsite-product-price a {}
}
</style>
<link href="https://cdn2.editmysite.com/css/old/slideshow/slideshow.css?1234" rel="stylesheet" type="text/css"/>
<script>
var STATIC_BASE = '//cdn1.editmysite.com/';
var ASSETS_BASE = '//cdn2.editmysite.com/';
var STYLE_PREFIX = 'wsite';
</script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js">
</script>
<script src="https://cdn2.editmysite.com/js/lang/en/stl.js?buildTime=1234&" type="text/javascript">
</script>
<script src="https://cdn2.editmysite.com/js/site/main.js?buildTime=1234">
</script>
<script type="text/javascript">
function initCustomerAccountsModels() {
(function(){_W.setup_rpc({"url":"\/ajax\/api\/JsonRPC\/CustomerAccounts\/","actions":{"CustomerAccounts":[{"name":"login","len":2,"multiple":false,"standalone":false},{"name":"logout","len":0,"multiple":false,"standalone":false},{"name":"getSessionDetails","len":0,"multiple":false,"standalone":false},{"name":"getAccountDetails","len":0,"multiple":false,"standalone":false},{"name":"getOrders","len":0,"multiple":false,"standalone":false},{"name":"register","len":4,"multiple":false,"standalone":false},{"name":"emailExists","len":1,"multiple":false,"standalone":false},{"name":"passwordReset","len":1,"multiple":false,"standalone":false},{"name":"passwordUpdate","len":3,"multiple":false,"standalone":false},{"name":"validateSession","len":1,"multiple":false,"standalone":false}]},"namespace":"_W.CustomerAccounts.RPC"});
_W.setup_model_rpc({"rpc_namespace":"_W.CustomerAccounts.RPC","model_namespace":"_W.CustomerAccounts.BackboneModelData","collection_namespace":"_W.CustomerAccounts.BackboneCollectionData","bootstrap_namespace":"_W.CustomerAccounts.BackboneBootstrap","models":{"CustomerAccounts":{"_class":"CustomerAccounts.Model.CustomerAccounts","defaults":null,"validation":null,"types":null,"idAttribute":null,"keydefs":null}},"collections":{"CustomerAccounts":{"_class":"CustomerAccounts.Collection.CustomerAccounts"}},"bootstrap":[]});
})();
}
if(document.createEvent && document.addEventListener) {
var initEvt = document.createEvent('Event');
initEvt.initEvent('customerAccountsModelsInitialized', true, false);
document.dispatchEvent(initEvt);
} else if(document.documentElement.initCustomerAccountsModels === 0){
document.documentElement.initCustomerAccountsModels++
}
</script>
<script type="text/javascript">
_W = _W || {}; _W.securePrefix='UNSET';
</script>
<script>
_W = _W || {};
_W.customerLocale = "en_US";
_W.storeName = null;
_W.storeCountry = "AU";
_W.storeCurrency = "AUD";
_W.storeEuPrivacyPolicyUrl = "";
com_currentSite = "240750007582293700";
com_userID = "101799490";
</script>
<script src="https://cdn2.editmysite.com/js/old/slideshow-jq.js?buildTime=1234" type="text/javascript">
</script>
<script type="text/javascript">
_W.configDomain = "www.weebly.com";
</script>
<script>
_W.relinquish && _W.relinquish()
</script>
<script src="https://cdn2.editmysite.com/js/lang/en/stl.js?buildTime=1234&" type="text/javascript">
</script>
<script>
_W.themePlugins = [];
</script>
<script type="text/javascript">
_W.recaptchaUrl = "https://www.google.com/recaptcha/api.js";
</script>
<script type="text/javascript">
<!--
var IS_ARCHIVE = 1;
function initFlyouts(){
initPublishedFlyoutMenus(
[{"id":"980729199903201996","title":"Home","url":"index.html","target":"","nav_menu":false,"nonclickable":false},{"id":"180778030686805773","title":"Details","url":"details.html","target":"","nav_menu":false,"nonclickable":false},{"id":"262351605450613938","title":"Components","url":"components.html","target":"","nav_menu":false,"nonclickable":false},{"id":"558157107831467310","title":"Rules","url":"rules.html","target":"","nav_menu":false,"nonclickable":false},{"id":"826011429284417961","title":"2019 Projects","url":"2019-projects.html","target":"","nav_menu":false,"nonclickable":false},{"id":"512481355700656421","title":"2018 Projects","url":"2018-projects.html","target":"","nav_menu":false,"nonclickable":false},{"id":"766801339173964871","title":"FAQ","url":"faq.html","target":"","nav_menu":false,"nonclickable":false},{"id":"219636233715695400","title":"About Us","url":"about-us.html","target":"","nav_menu":false,"nonclickable":false}],
"512481355700656421",
'',
'active',
false,
{"navigation\/item":"<li {{#id}}id=\"{{id}}\"{{\/id}} class=\"wsite-menu-item-wrap {{#has_children}}has-submenu{{\/has_children}}\">\n <a\n {{^nonclickable}}\n {{^nav_menu}}\n href=\"{{url}}\"\n {{\/nav_menu}}\n {{\/nonclickable}}\n {{#target}}\n target=\"{{target}}\"\n {{\/target}}\n {{#membership_required}}\n data-membership-required=\"{{.}}\"\n {{\/membership_required}}\n {{#nonclickable}}\n class=\"wsite-menu-item dead-link\"\n {{\/nonclickable}}\n {{^nonclickable}}\n class=\"wsite-menu-item\"\n {{\/nonclickable}}\n >\n {{{title_html}}}\n <\/a>\n {{#has_children}}{{> navigation\/flyout\/list}}{{\/has_children}}\n<\/li>\n","navigation\/flyout\/list":"<div class=\"wsite-menu-wrap\" style=\"display:none\">\n\t<ul class=\"wsite-menu\">\n\t\t{{#children}}{{> navigation\/flyout\/item}}{{\/children}}\n\t<\/ul>\n<\/div>\n","navigation\/flyout\/item":"<li {{#id}}id=\"{{id}}\"{{\/id}}\n class=\"wsite-menu-subitem-wrap {{#is_current}}wsite-nav-current{{\/is_current}} {{#has_children}}has-submenu{{\/has_children}}\"\n >\n <a\n {{^nonclickable}}\n {{^nav_menu}}\n href=\"{{url}}\"\n {{\/nav_menu}}\n {{\/nonclickable}}\n {{#target}}\n target=\"{{target}}\"\n {{\/target}}\n {{#nonclickable}}\n class=\"wsite-menu-item dead-link\"\n {{\/nonclickable}}\n {{^nonclickable}}\n class=\"wsite-menu-item\"\n {{\/nonclickable}}\n >\n <span class=\"wsite-menu-title\">\n {{{title_html}}}\n <\/span>\n <\/a>\n {{#has_children}}{{> navigation\/flyout\/list}}{{\/has_children}}\n<\/li>\n"},
{"hasCustomMinicart":true}
)
}
//-->
</script>
</link>
</head>
<body class="no-header-page wsite-theme-light wsite-page-2018-projects header-sticky banner-overlay-on">
<div class="wrapper">
<div class="edison-header">
<div class="container">
<div class="header-inner-wrap">
<div class="logo">
<span class="wsite-logo">
<a href="/">
<span id="wsite-title">
HARDHACK 2021
</span>
</a>
</span>
</div>
<div class="nav-wrap">
<div class="dummy-menu">
<ul class="wsite-menu-default">
<li class="wsite-menu-item-wrap" id="pg980729199903201996">
<a class="wsite-menu-item" href="index.html">
Home
</a>
</li>
<li class="wsite-menu-item-wrap" id="pg180778030686805773">
<a class="wsite-menu-item" href="details.html">
Details
</a>
</li>
<li class="wsite-menu-item-wrap" id="pg262351605450613938">
<a class="wsite-menu-item" href="components.html">
Components
</a>
</li>
<li class="wsite-menu-item-wrap" id="pg558157107831467310">
<a class="wsite-menu-item" href="rules.html">
Rules
</a>
</li>
<li class="wsite-menu-item-wrap" id="pg826011429284417961">
<a class="wsite-menu-item" href="2019-projects.html">
2019 Projects
</a>
</li>
<li class="wsite-menu-item-wrap" id="active">
<a class="wsite-menu-item" href="2018-projects.html">
2018 Projects
</a>
</li>
<li class="wsite-menu-item-wrap" id="pg766801339173964871">
<a class="wsite-menu-item" href="faq.html">
FAQ
</a>
</li>
<li class="wsite-menu-item-wrap" id="pg219636233715695400">
<a class="wsite-menu-item" href="about-us.html">
About Us
</a>
</li>
</ul>
</div>
<div class="nav desktop-nav">
<ul class="wsite-menu-default">
<li class="wsite-menu-item-wrap" id="pg980729199903201996">
<a class="wsite-menu-item" href="index.html">
Home
</a>
</li>
<li class="wsite-menu-item-wrap" id="pg180778030686805773">
<a class="wsite-menu-item" href="details.html">
Details
</a>
</li>
<li class="wsite-menu-item-wrap" id="pg262351605450613938">
<a class="wsite-menu-item" href="components.html">
Components
</a>
</li>
<li class="wsite-menu-item-wrap" id="pg558157107831467310">
<a class="wsite-menu-item" href="rules.html">
Rules
</a>
</li>
<li class="wsite-menu-item-wrap" id="pg826011429284417961">
<a class="wsite-menu-item" href="2019-projects.html">
2019 Projects
</a>
</li>
<li class="wsite-menu-item-wrap" id="active">
<a class="wsite-menu-item" href="2018-projects.html">
2018 Projects
</a>
</li>
<li class="wsite-menu-item-wrap" id="pg766801339173964871">
<a class="wsite-menu-item" href="faq.html">
FAQ
</a>
</li>
<li class="wsite-menu-item-wrap" id="pg219636233715695400">
<a class="wsite-menu-item" href="about-us.html">
About Us
</a>
</li>
</ul>
</div>
</div>
<div class="site-utils">
<div class="wsite-search-wrap">
<a class="search-toggle" href="#">
Search
</a>
</div>
<button class="hamburger">
<i>
</i>
</button>
</div>
</div>
</div>
</div>
<div class="content-wrap">
<div class="wsite-elements wsite-not-footer" id="wsite-content">
<div class="wsite-section-wrap">
<div class="wsite-section wsite-body-section wsite-section-bg-color wsite-background-73" style="background-color: #ededed;background-image: none;">
<div class="wsite-section-content">
<div class="container">
<div class="wsite-section-elements">
<h2 class="wsite-content-title">
2018 Teams & Projects
</h2>
<div class="paragraph">
Event photos can be found
<a href="https://bit.ly/2HUiRY9" target="_blank">
here
</a>
.
</div>
</div>
</div>
</div>
</div>
</div>
<div class="wsite-section-wrap">
<div class="wsite-section wsite-body-section wsite-section-bg-color wsite-background-75" style="background-color: #ededed;background-image: none;is_customized: 1;">
<div class="wsite-section-content">
<div class="container">
<div class="wsite-section-elements">
<div class="paragraph">
<font color="#000000" size="5">
Hardware for crowd-sourcing data for localized insolation forecasts and residential demand management.
</font>
</div>
<div class="wsite-spacer" style="height:17px;">
</div>
<div>
<div class="wsite-multicol">
<div class="wsite-multicol-table-wrap" style="margin:0 -15px;">
<table class="wsite-multicol-table">
<tbody class="wsite-multicol-tbody">
<tr class="wsite-multicol-tr">
<td class="wsite-multicol-col" style="width:50%; padding:0 15px;">
<div>
<div style="height:20px;overflow:hidden">
</div>
<div id="785297823813603814-slideshow">
</div>
<script type="text/javascript">
(function(jQuery) {
function init() { window.wSlideshow && window.wSlideshow.render({elementID:"785297823813603814",nav:"thumbnails",navLocation:"bottom",captionLocation:"bottom",transition:"fade",autoplay:"0",speed:"5",aspectRatio:"auto",showControls:"true",randomStart:"false",images:[{"url":"1/0/1/7/101799490/img-4478.jpg","width":"400","height":"218"},{"url":"1/0/1/7/101799490/img-4441.jpg","width":"400","height":"236"},{"url":"1/0/1/7/101799490/img-4007.jpg","width":"400","height":"245"},{"url":"1/0/1/7/101799490/31641866-10214220158556089-4700403429829246976-n.jpg","width":"400","height":"385"},{"url":"1/0/1/7/101799490/img-4480.jpg","width":"400","height":"267"},{"url":"1/0/1/7/101799490/img-4436.jpg","width":"400","height":"242"}]}) }
jQuery(document).ready(init);
})(window.jQuery)
</script>
<div style="height:20px;overflow:hidden">
</div>
</div>
</td>
<td class="wsite-multicol-col" style="width:50%; padding:0 15px;">
<div class="paragraph">
<span>
<font color="#1f1f1f" size="3">
Residential solar installations are becoming an increasingly large part of the electricity generation mix. Many households are making significant outlays on new installations, with the conventional wisdom being that some of the cost of installation could be recouped by exporting generation in excess of consumption to the grid. Accurate predictions of wholesale electricity prices as well as solar radiation intensity (insolation) may allow households (or "virtual generators" which are aggregations of private domestic installations) to manage their demand to ensure that a maximum amount of their energy production is available to export to the grid when wholesale prices are high.
</font>
</span>
<br/>
<br/>
<br/>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div class="paragraph">
<font color="#000000" size="3">
The first component of our project was a low cost system for receiving real-time APT and digital weather satellite imagery. USB Digital TV tuners designed to operate in the VHF band designed around the Realtek RTL2832 chip are available for about $15 and can be used with bootleg drivers to function as generic software-defined radio receivers at frequencies of up to 1.8GHz. The weather satellites of interest transmit right-hand circularly polarised signals in the region of 137MHz. The satellites in question (the NOAA-15, 18 and 19 and the Russian Meteor M2 constellation) each pass over twice per day in polar orbits.
<br/>
<br/>
To receive signals from these satellites we constructed a cross-half-wave dipole antenna with a design resonance of 137.5MHz with a reflector to enhance directional gain. The cross-dipole design provides the necessary polarisation to receive transmissions from the spinning satellites while helping to attenuate vertically polarised terrestrial FM broadcasts (thereby reducing noise).
<br/>
<br/>
The second component of this project was a small IoT-enabled rooftop device to measure rooftop temperature, and insolation using onboard sensors. A solar panel is used both to measure insolation and to power the device. This component was built using a Thinxtra Xkit development board and using the Sigfox network for low-bandwidth, low-power consumption backhaul. The solar panel was placed on a single axis pivot to allow it to be automatically aligned with the sun. Such devices could be very cheap to produce.
<br/>
<br/>
A network of several hundred of the rooftop modules spread across a city combined with data from the first component as well as other public-domain meteorological data could be used to generate a suburb-by-suburb insolation forecast which could then be used by households with solar installations to predict generation and schedule demand to maximise the return on their rooftop investment!
</font>
</div>
<div>
<div class="wsite-multicol">
<div class="wsite-multicol-table-wrap" style="margin:0 -15px;">
<table class="wsite-multicol-table">
<tbody class="wsite-multicol-tbody">
<tr class="wsite-multicol-tr">
<td class="wsite-multicol-col" style="width:50%; padding:0 15px;">
<div class="wsite-spacer" style="height:50px;">
</div>
</td>
<td class="wsite-multicol-col" style="width:50%; padding:0 15px;">
<div>
<div style="height: 20px; overflow: hidden; width: 100%;">
</div>
<hr class="styled-hr" style="width:100%;"/>
<div style="height: 20px; overflow: hidden; width: 100%;">
</div>
</div>
<div class="paragraph" style="text-align:center;">
<span>
</span>
<span style="color:rgb(0, 0, 0)">
Rob Koch - Alex Sibree - Josh Smith - Scott Hancock
</span>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="wsite-section-wrap">
<div class="wsite-section wsite-body-section wsite-background-74">
<div class="wsite-section-content">
<div class="container">
<div class="wsite-section-elements">
<div class="paragraph">
<font color="#020202">
<font size="5">
Charity Bitcoin Coin Collector
</font>
</font>
<br/>
<span>
<font color="#000000">
The piggy bank that buys crypto-currency for charities.
</font>
</span>
</div>
<div>
<div class="wsite-multicol">
<div class="wsite-multicol-table-wrap" style="margin:0 -15px;">
<table class="wsite-multicol-table">
<tbody class="wsite-multicol-tbody">
<tr class="wsite-multicol-tr">
<td class="wsite-multicol-col" style="width:50%; padding:0 15px;">
<div>
<div style="height:20px;overflow:hidden">
</div>
<div id="404242177288743556-slideshow">
</div>
<script type="text/javascript">
(function(jQuery) {
function init() { window.wSlideshow && window.wSlideshow.render({elementID:"404242177288743556",nav:"thumbnails",navLocation:"bottom",captionLocation:"bottom",transition:"fade",autoplay:"0",speed:"5",aspectRatio:"auto",showControls:"true",randomStart:"false",images:[{"url":"1/0/1/7/101799490/img-4389_2.jpg","width":"400","height":"224"},{"url":"1/0/1/7/101799490/img-4493_2.jpg","width":"400","height":"216"},{"url":"1/0/1/7/101799490/img-4404_3.jpg","width":"400","height":"343"},{"url":"1/0/1/7/101799490/img-4383_3.jpg","width":"400","height":"215"}]}) }
jQuery(document).ready(init);
})(window.jQuery)
</script>
<div style="height:20px;overflow:hidden">
</div>
</div>
</td>
<td class="wsite-multicol-col" style="width:50%; padding:0 15px;">
<div class="paragraph" style="text-align:left;">
<font color="#2a2a2a" size="3">
Our aim was to build a piggy bank that buys crypto-currency for charities after they receive coin donations from people. The piggy bank contains a coin reader that is connected to an Arduino Uno. The Arduino contains the logic to differentiate between the type of coin inserted and calculates the total amount of money within the piggy bank. The micro-controller is also connected to a LCD display screen and a joystick that allows users to scroll through the menu and select the corresponding information they would like to see displayed on the screen. Users can view their total amount of money in the piggy bank and in their crypto-currency wallet as well as change the type of currency to buy. Currently, the supported crypto-currencies are Bitcoin, Ethereum and Ripple. Once the piggy bank registers that at least 5 dollars has been deposited, the Arduino sends a message to the Raspberry Pi Zero W via serial communication to buy that amount of crypto-currency. The Raspberry Pi Zero W is connected to WiFi and a Python script authenticates and executes the transaction through the Bittrex exchange.
</font>
</div>
<div>
<div style="height: 20px; overflow: hidden; width: 100%;">
</div>
<hr class="styled-hr" style="width:100%;"/>
<div style="height: 20px; overflow: hidden; width: 100%;">
</div>
</div>
<div class="paragraph" style="text-align:center;">
<font color="#0d0d0d">
Tom
</font>
<span style="color:rgb(0, 0, 0)">
O'Sullivan -
</span>
<span style="color:rgb(13, 13, 13)">
Merry Le
</span>
<font color="#0d0d0d">
- Alex Valente -
</font>
<span style="color:rgb(13, 13, 13)">
Matt Hirschberg
</span>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div class="wsite-spacer" style="height:50px;">
</div>
</div>
</div>
</div>
</div>
</div>
<div class="wsite-section-wrap">
<div class="wsite-section wsite-body-section wsite-section-bg-color wsite-background-70" style="background-color: #ededed;background-image: none;">
<div class="wsite-section-content">
<div class="container">
<div class="wsite-section-elements">
<div class="paragraph">
<font color="#0a0a0a" size="5">
Virtual Presence Glove
</font>
<br/>
<font color="#0c0c0c">
Glove that allows the user to physically interact with the virtual world
</font>
</div>
<div class="wsite-spacer" style="height:17px;">
</div>
<div>
<div class="wsite-multicol">
<div class="wsite-multicol-table-wrap" style="margin:0 -15px;">
<table class="wsite-multicol-table">
<tbody class="wsite-multicol-tbody">
<tr class="wsite-multicol-tr">
<td class="wsite-multicol-col" style="width:50%; padding:0 15px;">
<div>
<div style="height:20px;overflow:hidden">
</div>
<div id="235201865300094870-slideshow">
</div>
<script type="text/javascript">
(function(jQuery) {
function init() { window.wSlideshow && window.wSlideshow.render({elementID:"235201865300094870",nav:"thumbnails",navLocation:"bottom",captionLocation:"bottom",transition:"fade",autoplay:"0",speed:"5",aspectRatio:"auto",showControls:"true",randomStart:"false",images:[{"url":"1\/0\/1\/7\/101799490\/img-4528.jpg","width":"400","height":"267"},{"url":"1\/0\/1\/7\/101799490\/img-4532_1.jpg","width":"400","height":"216"},{"url":"1\/0\/1\/7\/101799490\/img-4324.jpg","width":400,"height":221,"fullHeight":607,"fullWidth":1100}]}) }
jQuery(document).ready(init);
})(window.jQuery)
</script>
<div style="height:20px;overflow:hidden">
</div>
</div>
</td>
<td class="wsite-multicol-col" style="width:50%; padding:0 15px;">
<div class="paragraph">
<font color="#100f0f" size="3">
The glove will map its location virtually by the use of sensors; accelerometers and gyro for the position and rotation of the hand, flex sensors for how bent the fingers are. When a collision is detected between the glove's mapped location and the virtual object, the glove will stop the user from moving further in that direction via servos pulling on the glove, mimicking the presence of that object. The glove will also allow the user to interact with the object e.g. picking it up.
</font>
</div>
<div>
<div style="height: 20px; overflow: hidden; width: 100%;">
</div>
<hr class="styled-hr" style="width:100%;"/>
<div style="height: 20px; overflow: hidden; width: 100%;">
</div>
</div>
<div class="paragraph" style="text-align:center;">
<font color="#0b0b0b">
Adrian Leong - Jono De Luca - Geo Ovenden
<br/>
Nicholas Shaun - Wei Kin Lim
</font>
<br/>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="wsite-section-wrap">
<div class="wsite-section wsite-body-section wsite-background-69">
<div class="wsite-section-content">
<div class="container">
<div class="wsite-section-elements">
<div class="paragraph">
<font color="#0a0a0a" size="5">
The Balancer 1000
</font>
<br/>
<span>
<font color="#020202">
A pair of headphones that aids the user's sense of balance through asymmetrical stereo frequency manipulation.
</font>
</span>
</div>
<div class="wsite-spacer" style="height:17px;">
</div>
<div>
<div class="wsite-multicol">
<div class="wsite-multicol-table-wrap" style="margin:0 -15px;">
<table class="wsite-multicol-table">
<tbody class="wsite-multicol-tbody">
<tr class="wsite-multicol-tr">
<td class="wsite-multicol-col" style="width:50%; padding:0 15px;">
<div>
<div style="height:20px;overflow:hidden">
</div>
<div id="490295941853398301-slideshow">
</div>
<script type="text/javascript">
(function(jQuery) {
function init() { window.wSlideshow && window.wSlideshow.render({elementID:"490295941853398301",nav:"thumbnails",navLocation:"bottom",captionLocation:"bottom",transition:"fade",autoplay:"0",speed:"5",aspectRatio:"auto",showControls:"true",randomStart:"false",images:[{"url":"1/0/1/7/101799490/img-4472_1.jpg","width":"400","height":"211"},{"url":"1/0/1/7/101799490/img-4475_1.jpg","width":"400","height":"212"},{"url":"1/0/1/7/101799490/img-4476_1.jpg","width":"400","height":"204"},{"url":"1/0/1/7/101799490/img-4428.jpg","width":"400","height":"205"},{"url":"1/0/1/7/101799490/img-4430.jpg","width":"400","height":"205"}]}) }
jQuery(document).ready(init);
})(window.jQuery)
</script>
<div style="height:20px;overflow:hidden">
</div>
</div>
</td>
<td class="wsite-multicol-col" style="width:50%; padding:0 15px;">
<div class="paragraph">
<font color="#060606" size="3">
A complete solution that restores the user's sense of balance through aural cues provided by a pair of headphones. Orientation information is provided by a gyroscope sensor attached to the main arduino controller, and an algorithm maps out the orientation to a sophisticated mathematical model such that 90 degrees change in roll orientation results in a octave increase or decrease from the base frequency. The base frequency is 440hz. A change in the pitch axis would result in a change of the base frequency at the same rate. A separate device known as the Sigfox Xkit provides live information via the internet concerning the x,y,z accelerations so that an remote operator/guardian can monitor whether or not the person using the solution has fallen over and thus require help.
</font>
</div>
<div>
<div style="height: 20px; overflow: hidden; width: 100%;">
</div>
<hr class="styled-hr" style="width:100%;"/>
<div style="height: 20px; overflow: hidden; width: 100%;">
</div>
</div>
<div class="paragraph" style="text-align:center;">
<font color="#0c0c0c">
Bill (Shuyi) Chen - Farbod Torabi - Audiana Arifin
<br/>
Emily Kuo - Jackson Gum
</font>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="wsite-section-wrap">
<div class="wsite-section wsite-body-section wsite-section-bg-color wsite-background-71" style="background-color: #ededed;background-image: none;">
<div class="wsite-section-content">
<div class="container">
<div class="wsite-section-elements">
<div class="paragraph">
<font color="#090808" size="5">
Wi-Larm
</font>
<br/>
Wi-Fi Integrated Alarm Cloc
</div>
<div>
<div class="wsite-multicol">
<div class="wsite-multicol-table-wrap" style="margin:0 -15px;">
<table class="wsite-multicol-table">
<tbody class="wsite-multicol-tbody">
<tr class="wsite-multicol-tr">
<td class="wsite-multicol-col" style="width:50%; padding:0 15px;">
<div>
<div style="height:20px;overflow:hidden">
</div>
<div id="452737391158309557-slideshow">
</div>
<script type="text/javascript">
(function(jQuery) {
function init() { window.wSlideshow && window.wSlideshow.render({elementID:"452737391158309557",nav:"thumbnails",navLocation:"bottom",captionLocation:"bottom",transition:"fade",autoplay:"0",speed:"5",aspectRatio:"auto",showControls:"true",randomStart:"false",images:[{"url":"1/0/1/7/101799490/img-4378.jpg","width":"400","height":"208"},{"url":"1/0/1/7/101799490/img-4375.jpg","width":"400","height":"460"},{"url":"1/0/1/7/101799490/img-4221.jpg","width":"400","height":"215"}]}) }
jQuery(document).ready(init);
})(window.jQuery)
</script>
<div style="height:20px;overflow:hidden">
</div>
</div>
</td>
<td class="wsite-multicol-col" style="width:50%; padding:0 15px;">
<div class="paragraph">
<font color="#0a0a0a" size="3">
A Raspberry Pi was used to access user's Google Calendar events, using Python and Google's API. An Arduino programmed in C++ displayed, on a LCD, the appropriate time to wake up to arrive to events on time using multiple methods of transport and the event name. A buzzer would sound when the current time displayed on a 7 segment display was the same as the time on the LCD.
</font>
<br/>
</div>
<div class="wsite-spacer" style="height:22px;">
</div>
<div>
<div style="height: 20px; overflow: hidden; width: 100%;">
</div>
<hr class="styled-hr" style="width:100%;"/>
<div style="height: 20px; overflow: hidden; width: 100%;">
</div>
</div>
<div class="paragraph" style="text-align:center;">
<font color="#0a0a0a">
Steven Tran - Jacob Wisniewski - Abhi Balreddygari
<br/>
Eddie Yao
</font>
<br/>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div class="wsite-spacer" style="height:17px;">
</div>
</div>
</div>
</div>
</div>
</div>
<div class="wsite-section-wrap">
<div class="wsite-section wsite-body-section wsite-background-65">
<div class="wsite-section-content">
<div class="container">
<div class="wsite-section-elements">
<div class="paragraph">
<font color="#000000">
<font size="5">
good boyo
</font>
<br/>
</font>
<font color="#070707">
Puppy training collar controlled from your phone.
</font>
<br/>
</div>
<div class="wsite-spacer" style="height:17px;">
</div>
<div>
<div class="wsite-multicol">
<div class="wsite-multicol-table-wrap" style="margin:0 -15px;">
<table class="wsite-multicol-table">
<tbody class="wsite-multicol-tbody">
<tr class="wsite-multicol-tr">
<td class="wsite-multicol-col" style="width:50%; padding:0 15px;">
<div>
<div style="height:20px;overflow:hidden">
</div>
<div id="353355830987650152-slideshow">
</div>
<script type="text/javascript">
(function(jQuery) {
function init() { window.wSlideshow && window.wSlideshow.render({elementID:"353355830987650152",nav:"thumbnails",navLocation:"bottom",captionLocation:"bottom",transition:"fade",autoplay:"0",speed:"5",aspectRatio:"auto",showControls:"true",randomStart:"false",images:[{"url":"1\/0\/1\/7\/101799490\/img-4415.jpg","width":400,"height":209,"fullHeight":576,"fullWidth":1100},{"url":"1\/0\/1\/7\/101799490\/img-4421.jpg","width":400,"height":205,"fullHeight":564,"fullWidth":1100}]}) }
jQuery(document).ready(init);
})(window.jQuery)
</script>
<div style="height:20px;overflow:hidden">
</div>
</div>
</td>
<td class="wsite-multicol-col" style="width:50%; padding:0 15px;">
<div class="paragraph">
<font color="#111111" size="3">
The good boyo clips onto or entirely replaces your current puppies dog collar. It can be used to stop your dog running away, put a halt to bad behaviour and break bad habits. Puppies are known to change their mind quickly and will rarely return to a task or object if it is distracted by something else. Using your phone as the controller, the good boyo can be activated at the tap of a button and begins vibrating. Unlike harmful and inhumane shock collars, the good boyo uses six adjustable vibration motors to distract the dog from unwanted behaviour and is interfaced using the RaspberryPi Zero W through a socket connection and a simple HTML webpage. While shock collars may zap a dog if it is running away, the dog will continue running as it is now trying to escape from the pain. Instead with the good boyo, the dog is stopped in its tracks with no pain and nothing to run away from, just an irritating feeling to scratch. This makes it easy for the owner to get the dog to focus their attention back to you.
</font>
</div>
<div>
<div style="height: 20px; overflow: hidden; width: 100%;">
</div>
<hr class="styled-hr" style="width:100%;"/>
<div style="height: 20px; overflow: hidden; width: 100%;">
</div>
</div>
<div class="paragraph" style="text-align:center;">
<font color="#0b0b0b">
Angus Dunn - Hudson Gerwing
</font>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="wsite-section-wrap">
<div class="wsite-section wsite-body-section wsite-section-bg-color wsite-background-68" style="background-color: #ededed;background-image: none;">
<div class="wsite-section-content">
<div class="container">
<div class="wsite-section-elements">
<div class="paragraph">
<font color="#040404" size="5">
T.E.R.R.A.R.I.U.M
</font>
<br/>
<font color="#060606">
A compact automated system to monitor and care for plants.
</font>
</div>
<div class="wsite-spacer" style="height:17px;">
</div>
<div>
<div class="wsite-multicol">
<div class="wsite-multicol-table-wrap" style="margin:0 -15px;">
<table class="wsite-multicol-table">
<tbody class="wsite-multicol-tbody">
<tr class="wsite-multicol-tr">
<td class="wsite-multicol-col" style="width:50%; padding:0 15px;">
<div>
<div style="height:20px;overflow:hidden">
</div>
<div id="521187870112596543-slideshow">
</div>
<script type="text/javascript">
(function(jQuery) {
function init() { window.wSlideshow && window.wSlideshow.render({elementID:"521187870112596543",nav:"thumbnails",navLocation:"bottom",captionLocation:"bottom",transition:"fade",autoplay:"0",speed:"5",aspectRatio:"auto",showControls:"true",randomStart:"false",images:[{"url":"1/0/1/7/101799490/img-4401_1.jpg","width":"400","height":"205"},{"url":"1/0/1/7/101799490/img-4295_1.jpg","width":"400","height":"267"},{"url":"1/0/1/7/101799490/img-4394.jpg","width":"400","height":"228"},{"url":"1/0/1/7/101799490/img-4397.jpg","width":"400","height":"184"}]}) }
jQuery(document).ready(init);
})(window.jQuery)
</script>
<div style="height:20px;overflow:hidden">
</div>
</div>
</td>
<td class="wsite-multicol-col" style="width:50%; padding:0 15px;">
<div class="paragraph">
<font color="#000000" size="3">
With the world's population continually rising, sustainable food production is an issue that has been rife in recent times, particularly in the agricultural sector. The Technologically Enhanced Remote Relay Actuated Real-time Irrigation Unit Monitor (TERRARIUM) allows for high-density, indoor plantations, aiming to alleviate the stress on the environment by way of reduced surface land usage, greater crop yield and thus reduced crop and resource waste.
<br/>
<br/>
</font>
<br/>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div class="wsite-spacer" style="height:19px;">
</div>
<div class="paragraph">
<font color="#000000" size="3">
The TERRARIUM makes use of several components:
<br/>
- An array of LEDs can be set to a timer to mimic outdoor daylight hours;
<br/>
- Soil resistivity sensors measure the moisture present in the soil – where it is too dry, the device will automatically feed water into the system, stopping when the moisture level is adequate. This reduces water usage to the only necessary amount;
<br>
- A water level monitor is fitted to an external tank, alerting the user through text message when water reserves need to be replenished; and
<br/>
- Temperature and humidity are also monitored, with the user being notified when these conditions do not align with the plant’s needs.
<br/>
<br/>
These conditional parameters can be modified by the user in an external web app, where requirements can be specified based on plant species. Through this, they are also able to keep track of the overall crop health. Aside from provided electronics, the TERRARIUM can be produced entirely from recycled materials and can be modified for further applications in research, live vegetation transport, single units for in-home use by individuals without access to garden areas and even remote monitoring in space exploration where resources are limited.
</br>
</font>
</div>
<div>
<div class="wsite-multicol">
<div class="wsite-multicol-table-wrap" style="margin:0 -15px;">
<table class="wsite-multicol-table">
<tbody class="wsite-multicol-tbody">
<tr class="wsite-multicol-tr">
<td class="wsite-multicol-col" style="width:49.999999999999%; padding:0 15px;">
<div class="wsite-spacer" style="height:50px;">
</div>
</td>
<td class="wsite-multicol-col" style="width:49.999999999999%; padding:0 15px;">
<div>
<div style="height: 20px; overflow: hidden; width: 100%;">
</div>
<hr class="styled-hr" style="width:100%;"/>
<div style="height: 20px; overflow: hidden; width: 100%;">
</div>
</div>
<div class="paragraph" style="text-align:center;">
<font color="#050505">
Oscar Walsh - Billy Woods - Siena Zubcic - Alex Collins
<br/>
Richard Huang - Aaron Watson
</font>
<br/>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="wsite-section-wrap">
<div class="wsite-section wsite-body-section wsite-background-67">
<div class="wsite-section-content">
<div class="container">
<div class="wsite-section-elements">
<div class="paragraph">
<font color="#0b0b0b" size="5">
RE:Mail
</font>
<br/>
<font color="#090808" size="4">
The RE:Mail electronically notifies an end user when they receive physical mail.
</font>
</div>
<div class="wsite-spacer" style="height:17px;">
</div>
<div>
<div class="wsite-multicol">
<div class="wsite-multicol-table-wrap" style="margin:0 -15px;">
<table class="wsite-multicol-table">
<tbody class="wsite-multicol-tbody">
<tr class="wsite-multicol-tr">
<td class="wsite-multicol-col" style="width:50%; padding:0 15px;">
<div>
<div style="height:20px;overflow:hidden">
</div>
<div id="874682306477139169-slideshow">
</div>
<script type="text/javascript">
(function(jQuery) {
function init() { window.wSlideshow && window.wSlideshow.render({elementID:"874682306477139169",nav:"thumbnails",navLocation:"bottom",captionLocation:"bottom",transition:"fade",autoplay:"0",speed:"5",aspectRatio:"auto",showControls:"true",randomStart:"false",images:[{"url":"1/0/1/7/101799490/img-4363.jpg","width":"400","height":"231"},{"url":"1/0/1/7/101799490/img-4358.jpg","width":"400","height":"193"}]}) }
jQuery(document).ready(init);
})(window.jQuery)
</script>
<div style="height:20px;overflow:hidden">
</div>
</div>
</td>
<td class="wsite-multicol-col" style="width:50%; padding:0 15px;">
<div class="paragraph">
<font color="#060606" size="3">
The Re:Mail uses an infrared LED and sensor to detect when mail is passed through the slot of a mailbox. It then uses a Raspberry Pi Zero W, Pi Camera and LED flash to take a photo of the mail that is then emailed to the end user.
<br/>
The project was coded in Python with a hint of Bash scripting for it to run on the Raspbian operating system. In its current state we can see this project used in organisations with an interest in IoT applications or quality of life improvements for their customers and team.
</font>
</div>
<div>
<div style="height: 20px; overflow: hidden; width: 100%;">
</div>
<hr class="styled-hr" style="width:100%;"/>
<div style="height: 20px; overflow: hidden; width: 100%;">
</div>
</div>
<div class="paragraph" style="text-align:center;">
<font color="#070707">
Bryce Gardner - Akhila Liyanage - Christopher Liong
<br/>
Nadim Ahmed - Owen Shor
</font>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="wsite-section-wrap">
<div class="wsite-section wsite-body-section wsite-section-bg-color wsite-background-64" style="background-color: #ededed;background-image: none;">
<div class="wsite-section-content">
<div class="container">
<div class="wsite-section-elements">
<div class="paragraph">
<font color="#000000">
<font size="5">
EyeGuide
</font>
<br/>
An low cost eye tracking apparatus and software suite built to help people with paralysis use a computer.
</font>
</div>
<div class="wsite-spacer" style="height:17px;">
</div>
<div>
<div class="wsite-multicol">
<div class="wsite-multicol-table-wrap" style="margin:0 -15px;">
<table class="wsite-multicol-table">
<tbody class="wsite-multicol-tbody">
<tr class="wsite-multicol-tr">
<td class="wsite-multicol-col" style="width:50%; padding:0 15px;">
<div>
<div style="height:20px;overflow:hidden">
</div>
<div id="781511544311691450-slideshow">
</div>
<script type="text/javascript">
(function(jQuery) {
function init() { window.wSlideshow && window.wSlideshow.render({elementID:"781511544311691450",nav:"thumbnails",navLocation:"bottom",captionLocation:"bottom",transition:"fade",autoplay:"0",speed:"5",aspectRatio:"auto",showControls:"true",randomStart:"false",images:[{"url":"1/0/1/7/101799490/img-4455.jpg","width":"400","height":"210"},{"url":"1/0/1/7/101799490/img-4470.jpg","width":"400","height":"217"},{"url":"1/0/1/7/101799490/img-4461.jpg","width":"400","height":"226"},{"url":"1/0/1/7/101799490/img-4468.jpg","width":"400","height":"203"}]}) }
jQuery(document).ready(init);
})(window.jQuery)
</script>
<div style="height:20px;overflow:hidden">
</div>
</div>
</td>
<td class="wsite-multicol-col" style="width:50%; padding:0 15px;">
<div class="paragraph">
<font color="#000000" size="3">
The EyeGuide's main hardware components consist of a Raspberry Pi camera with a Raspberry Pi Zero W. The camera is infra-red sensitive, paired with infra-red LEDs aimed at eye to provide a clear image of the eye's movements to help the camera track it. The footage is then streamed to the main PC using an IP server. The software suite, which is an open-sourced library built upon OpenFrameworks, then tracks the pupil's movements as seen from the camera. This helps the user to gain control of the on-screen cursor. Whichever part of the screen the user gazes at, the cursor moves to the approximate position in that line of gaze allowing the user to interact with on-screen functions. The device is aimed at user with full body paralysis.
</font>
</div>
<div>
<div style="height: 20px; overflow: hidden; width: 100%;">
</div>
<hr class="styled-hr" style="width:100%;"/>