-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
110 lines (101 loc) · 6.53 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
<!DOCTYPE html>
<html lang="en">
<head>
<link href="https://fonts.googleapis.com/css2?family=Archivo Black" rel="stylesheet">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Virtual Reality</title>
<link rel="stylesheet" href="styles.css">
<script src="https://kit.fontawesome.com/d988222789.js" crossorigin="anonymous"></script>
</head>
<body>
<header class="container">
<center>
<img src="images/vr.jpg" class="header-image"/>
</center>
<h1>Relativty <br>an open-source VR headset</h1>
<p>
I’m Maxim Perumal (Maxim xyz) and when my best friend Gabriel Combe and I were 15 years old we built our own VR headset because we couldn't afford to buy one. It became Relativty, one of the most popular open-source VR headset.
</p>
</header>
<section>
<div class="container">
<div class="intro">
<h1 class="intro-title"><b>Make it for $200</b></h1>
<p class="intro-body">Relativty is not a consumer product. We made Relativty in my bedroom with a soldering iron and a 3D printer and we expect you to do the same: build it yourself.</p>
</div>
<div class="card-container">
<h1 class="card-container-title">Software</h1>
<div class="card-flex">
<div class="card card1">
<img src="images/full_steam.jpg" class="card-image">
<h1 class="card-title">Full Steam VR support</h1>
<p class="card-body">We started Relativty because after watching Sword Art Online we wanted to make our own VR games. Thus Relativty supports SteamVR games and can be modified to add support for any DIY or off-the-shelf VR device.</p>
</div>
<div class="card card2">
<img src="images/experimental.jpg" class="card-image">
<h1 class="card-title">Experimental <br> positional-scaling</h1>
<p class="card-body">The room-scaling AI can be used with any camera, it tracks your body based on video input. Precision and freedom of movement are still very far from dedicated sensors, however, we believe that the model can be trained and improved by orders of magnitude.</p>
</div>
</div>
</div>
<div class="intro">
<h1 class="intro-title"><b>Motherboard</b></h1>
<p class="intro-body">We designed an affordable motherboard that runs the Relativty Firmware, it is based on the Atmel SAM3X8E ARM Cortex-M3 processor and uses an MPU-6050 as it’s IMU. The naked PCB and the components to solder on, cost in total about 25 dollars.</p>
</div>
<center>
<img src="images/img3.jpg">
</center>
<div class="card-container purple">
<h1 class="card-container-title purple-title">Firmware & Display</h1>
<div class="card-flex">
<div class="card card1">
<img src="images/img4.jpg" class="card-image">
<h1 class="card-title">Relativty Firmware runs on any ARM sam</h1>
<p class="card-body">The Relativty firmware, which powers the actual physical device, is based on ArduinoCore-sam. So in addition to the Relativty Motherboard, it is compatible with Arduino Due or any other board equipped with a processor that supports the ArduinoCore.</p>
</div>
<div class="card card2">
<img src="images/img5.jpg" class="card-image">
<h1 class="card-title">120FPS at 2K or any display you want</h1>
<p class="card-body">Relativty headset runs a 2K dual-display at 120FPS. However, because of the open nature of Relativty you can use any display as long as your computer is able to handle it. From more affordable 90Hz 1080p screen to 4K panels.</p>
</div>
</div>
</div>
<div class="intro">
<h1 class="intro-title"><b>Getting started</b></h1>
<p class="intro-body">Relativty is entirely Open-source; we made it to be a testing ground for hackers and developer rather than a product. You can find the source code as well as the source for the electronics, hardware, and mechanical parts on our Github. The guide on how to build Relativty is available on our Github. You can download the latest release here.</p>
</div>
<div class="links">
<div class="git-dow-links">
<a class="btn" href="#"><i class="fa-brands fa-github"></i> How to build</a>
<a class="btn" href="#"><i class="fa-solid fa-download"></i> Download</a>
</div>
<div class="discord-card">
<div class="intro p1">
<h1 class="intro-title"><b>Join our Discord server</b></h1>
<p class="intro-body">To talk to other VR enthusiast, ask for help building the headset or provide experience to others!</p>
</div>
<a class="btn discord-link" href="#" ><i class="fa-brands fa-discord"></i> Join server</a>
</div>
</div>
<div class="hiring">
<div class="intro">
<h1 class="intro-title"><b>We are hiring</b></h1>
<p class="intro-body">
We are starting a new company called Unai, building a new standalone VR headset from the ground-up and, alongside, the OS and Virtual World powering it. Our end goal is to solve immersiveness. This poses challenges in fields ranging from optics, computer vision, electrical design, low-level OS, game engine and many more.
We are currently hiring people willing to help solve those challenges. If you are one of those people, please reach out at maxim@unai.one.
Please visit unai.one to learn more and jobs see available positions.
</p>
</div>
</div>
</section>
<footer>
<p>
with love by Maxim Perumal (Maxim xyz), yoo bah<br>
Copyright © 2022 Relativty, Maxim Perumal, . All rights reserved.
</p>
</footer>
</div>
</body>
</html>