-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathabout.html
More file actions
91 lines (89 loc) · 4.92 KB
/
about.html
File metadata and controls
91 lines (89 loc) · 4.92 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
---
title: About
---
<div class="container">
<div class="row mb-4">
<div class="col">
<p>
Wireless Sensing and Embedded Systems Lab is a systems research group in the Electrical and Computer
Engineering Department at Carnegie Mellon University that focuses on the platforms, protocols and
processing techniques that support networked embedded systems. We are interested in a broad range of
topics including: operating system design, wireless networking, sensing technologies, real-time
scheduling, time synchronization and localization. We apply our work to applications such as
augmented, virtual and mixed reality, distributed edge computing systems, building energy
management, micro-grid management, critical infrastructure monitoring, large-scale environmental
sensing and mobile computing.
</p>
</div>
</div>
<div class="row mb-4">
<div class="col">
<h2>Sponsors</h2>
<ul class="sponsor-list row list-unstyled">
<li class="col-lg-2 col-md-3 col-sm-4 col-6"><img alt="Bosch Logo" src="/img/sponsors/bosch.png"></li>
<li class="col-lg-2 col-md-3 col-sm-4 col-6"><img alt="NIST Logo" src="/img/sponsors/nist.png"></li>
<li class="col-lg-2 col-md-3 col-sm-4 col-6"><img alt="NSF Logo" src="/img/sponsors/nsf.png"></li>
<li class="col-lg-2 col-md-3 col-sm-4 col-6"><img alt="SRC Logo" src="/img/sponsors/src.png"></li>
<li class="col-lg-2 col-md-3 col-sm-4 col-6"><img alt="DOE Logo" src="/img/sponsors/doe.png"></li>
<li class="col-lg-2 col-md-3 col-sm-4 col-6"><img alt="ARPA-E Logo" src="/img/sponsors/arpa-e.png"></li>
<li class="col-lg-2 col-md-3 col-sm-4 col-6"><img alt="Bridgestone Logo" src="/img/sponsors/bridgestone.png"></li>
<li class="col-lg-2 col-md-3 col-sm-4 col-6"><img alt="Texas Instruments Logo" src="/img/sponsors/ti.png"></li>
</ul>
<p><strong>Like our research? Consider becoming a lab sponsor!</strong><br/>
Corporate collaborators have unique access to Wireless Sensing and Embedded Systembs Lab researchers and
research, including early previews of new technologies, sponsor-exclusive workshops and demo days. There
are also opportunities to fund particular research themes and projects in the lab, which can include rights
to resulting intellectual property. Please contact Professor Rowe for more information. Email us with more
information.
</p>
</div>
</div>
<h2>Team</h2>
<div class="row team-list">
{% assign memberPriorities = site.team | group_by: 'priority' | sort: 'name' %}
{% for priority in memberPriorities %}
{% assign members = priority.items | sort: 'lastname' %}
{% for member in members %}
<div class="border-container">
<div class="team-item">
{% if member.image and member.image != "" %}
<img alt="{{ member.firstname }} {{ member.lastname }}" src="{{ member.image }}">
{% else %}
<img alt="{{ member.firstname }} {{ member.lastname }}" src="/img/team/anon.png">
{% endif %}
<strong>{{ member.firstname }} {{ member.lastname }}</strong><br/>
{{ member.title }},<br/>
{{ member.affiliation }}<br/>
{% if member.website %}
<a href="{{ member.website }}" target="blank">Website</a>
{% endif %}
</div>
</div>
{% endfor %}
{% endfor %}
</div>
<h2>Alumni</h2>
<div class="row team-list">
{% assign memberPriorities = site.alumni | group_by: 'priority' | sort: 'name' %}
{% for priority in memberPriorities %}
{% assign members = priority.items | sort: 'lastname' %}
{% for member in members %}
<div class="border-container">
<div class="team-item">
{% if member.image and member.image != "" %}
<img alt="{{ member.firstname }} {{ member.lastname }}" src="{{ member.image }}">
{% else %}
<img alt="{{ member.firstname }} {{ member.lastname }}" src="/img/team/anon.png">
{% endif %}
<strong>{{ member.firstname }} {{ member.lastname }}</strong><br/>
{{ member.title }},<br/>
{{ member.affiliation }}<br/>
{% if member.website %}
<a href="{{ member.website }}" target="blank">Website</a>
{% endif %}
</div>
</div>
{% endfor %}
{% endfor %}
</div>
</div>