-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrobots.html
More file actions
99 lines (93 loc) · 4.36 KB
/
Copy pathrobots.html
File metadata and controls
99 lines (93 loc) · 4.36 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Robots — LeCAR Lab</title>
<link rel="stylesheet" href="styles.css">
<link rel="icon" href="assets/icon.jpg">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Source+Serif+4:ital,opsz,wght@0,8..60,400..700;1,8..60,400..700&family=Source+Sans+3:ital,wght@0,400..700;1,400..700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<script>
// Apply saved theme before paint to avoid a flash of the wrong theme.
(function () {
try {
var t = localStorage.getItem('theme');
if (t === 'dark' || t === 'light') document.documentElement.setAttribute('data-theme', t);
} catch (e) {}
})();
</script>
</head>
<body>
<header class="site-header">
<div class="container nav-row">
<a class="brand" href="index.html"><img src="assets/logo.png" alt="LeCAR Lab — Learning and Control for Agile Robotics Lab"></a>
<input type="checkbox" id="nav-toggle" class="nav-toggle" aria-label="Toggle navigation">
<label for="nav-toggle" class="nav-toggle-label" aria-hidden="true"><i class="fas fa-bars"></i></label>
<nav class="site-nav">
<a href="people.html">People</a>
<a href="publications.html">Publications</a>
<a href="research.html">Research Topics</a>
<a href="join.html">Join</a>
</nav>
<button type="button" class="theme-toggle" aria-label="Toggle dark mode"><i class="fas fa-moon"></i></button>
</div>
</header>
<main class="container">
<section>
<h2>Robots</h2>
<div class="robot-grid">
<figure>
<img src="assets/neural_swarm.gif" alt="Crazyflie 2.1 Micro Quadrotors">
<figcaption>Crazyflie 2.1 Micro Quadrotors</figcaption>
</figure>
<figure>
<img src="assets/Go1.gif" alt="Unitree Go1 Quadruped">
<figcaption>Unitree Go1 Quadruped</figcaption>
</figure>
<figure>
<img src="assets/RC_Car.gif" alt="1/10 Scale RACECAR/J FlatNose Robot">
<figcaption>1/10 Scale RACECAR/J "FlatNose" Robot</figcaption>
</figure>
<figure>
<img src="assets/Go2_arm.gif" alt="Unitree Go2 Quadruped + Arm">
<figcaption>Unitree Go2 Quadruped + Arm</figcaption>
</figure>
<figure>
<img src="assets/H2O.gif" alt="Unitree H1 Humanoid">
<figcaption>Unitree H1 Humanoid</figcaption>
</figure>
<figure>
<img src="assets/16car.gif" alt="1/16 Scale Racing Car">
<figcaption>1/16 Scale Racing Car</figcaption>
</figure>
<figure>
<img src="assets/ASAP.gif" alt="Unitree G1 Humanoid">
<figcaption>Unitree G1 Humanoid</figcaption>
</figure>
<figure>
<img src="assets/h1-2.png" alt="Unitree H1-2 Humanoid">
<figcaption>Unitree H1-2 Humanoid</figcaption>
</figure>
</div>
</section>
<section>
<h2>These robots are coming soon!</h2>
<ul>
<li>FPV drones</li>
<li>Direct Drive Diablo wheeled biped</li>
</ul>
</section>
</main>
<footer class="site-footer">
<div class="social-icons">
<a href="https://youtube.com/@LeCARLab" target="_blank" aria-label="YouTube"><i class="fab fa-youtube"></i></a>
<a href="https://twitter.com/LeCARLab" target="_blank" aria-label="Twitter"><i class="fab fa-twitter"></i></a>
<a href="https://github.com/LeCAR-Lab" target="_blank" aria-label="GitHub"><i class="fab fa-github"></i></a>
</div>
</footer>
<script src="theme.js"></script>
</body>
</html>