-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·104 lines (97 loc) · 3.63 KB
/
index.html
File metadata and controls
executable file
·104 lines (97 loc) · 3.63 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cosys-Lab on GitHub</title>
<style>
body {
font-family: sans-serif;
line-height: 1.6;
margin: 2em;
max-width: 800px;
margin-left: auto;
margin-right: auto;
padding: 1em;
}
.redirect-notice {
background-color: #fff3cd; /* Light yellow */
border: 1px solid #ffeeba; /* Darker yellow */
color: #856404; /* Brownish */
padding: 1em;
margin-bottom: 2em;
border-radius: 5px;
}
.redirect-notice a {
color: #0056b3; /* Standard link blue */
font-weight: bold;
}
h1, h2 {
color: #333;
border-bottom: 1px solid #eee;
padding-bottom: 0.3em;
}
p {
margin-bottom: 1em;
}
ul {
margin-left: 2em;
margin-bottom: 1em;
}
li {
margin-bottom: 0.5em;
}
a {
color: #007bff;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.footer {
margin-top: 3em;
border-top: 1px solid #eee;
padding-top: 1em;
font-size: 0.9em;
color: #666;
}
</style>
</head>
<body>
<div class="redirect-notice">
<strong>Notice:</strong> The documentation for <strong>Cosys-AirSim</strong>, which was previously hosted on this page, has moved.
<br>
Please visit the new documentation site at:
<a href="https://cosys-lab.github.io/Cosys-AirSim/" target="_blank" rel="noopener noreferrer">https://cosys-lab.github.io/Cosys-AirSim/</a>
</div>
<h1>Welcome to Cosys-Lab on Github</h1>
<p>
Visit the <a href="https://www.uantwerpen.be/en/research-groups/cosys-lab/" target="_blank" rel="noopener noreferrer">official site</a> of the <strong>Cosys-Lab</strong> research group.
Part of the Faculty of Applied Engineering at the University of Antwerp in Belgium.
</p>
<h2>About Us</h2>
<p>
Cosys-Lab focuses on the <strong>Co-Design for Cyber-Physical Systems</strong>. Our research activities span a wide range, from the development of novel sensor techniques and embedded systems, through advanced modeling techniques, to the design of highly energy-efficient mechanisms.
</p>
<p>
Some examples of our case studies and application areas include:
</p>
<ul>
<li>Monitoring patients with respiratory syndromes using innovative sensor technology.</li>
<li>Developing localization and gas-leak detection systems inspired by bat research.</li>
<li>Creating cost-efficient design methodologies for embedded controllers, particularly for BLDC machines.</li>
<li>Implementing virtual hardware-in-the-loop (vHiL) verification techniques for robust system testing.</li>
<li>Optimizing the design of critical medical devices, such as emergency ventilators.</li>
</ul>
<h2>Our Public Projects</h2>
<p>
All public projects, code repositories, and contributions from Cosys-Lab can be found on our GitHub organisation page.
</p>
<p>
<a href="https://github.com/orgs/Cosys-Lab/repositories" target="_blank" rel="noopener noreferrer"><strong>View Cosys-Lab Public Repositories on GitHub</strong></a>
</p>
<div class="footer">
Cosys-Lab, University of Antwerp
</div>
</body>
</html>