-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (47 loc) · 2.88 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
<!DOCTYPE html>
<html>
<head>
<title>FRC Dashboard</title>
<link rel="stylesheet" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="favicon.ico">
<link rel="icon" type="image/png" href="favicon.png">
</head>
<body>
<div class="video-ext-container">
<div class="video-container">
<video autoplay loop></video>
</div>
</div>
<header>
<img src="img/logo.svg" id="logo">
<h2>FRC Dashboard</h2>
<h3>The extendable, web-based robot driving interface</h3>
<a href="https://github.com/FRCDashboard/FRCDashboard" class="button">View on GitHub</a>
</header>
<article>
<section>
<h4>What is FRC Dashboard?</h4>
<p>FRC Dashboard is a powerful driving interface for <a href="http://firstinspires.org/robotics/frc">FIRST Robotics Competition</a> robots, designed for easy customization and expansion. It's built in vanilla HTML, CSS, and JavaScript, with lots and lots of code comments to help you get up, running, and building your own tools quickly.</p>
<p>Here's an example of an interface built with FRC Dashboard. (<a href="https://github.com/frc1418/FRCDashboard/tree/2016">GitHub</a>)</p>
<img src="img/screenshot.png">
</section>
<section>
<h4>Electron or Web</h4>
<p>By default, your dashboard runs on the powerful Electron framework, which is used by many professional pieces of software, including Atom, to run web apps on the desktop.</p>
<p>If you don't want that, you can also use the dashboard in your browser.</p>
<section>
<h4>Training</h4>
<p>If you need to learn how to use FRC Dashboard in even more detail than the comments allow, we've made a very simplified <a href="https://github.com/FRCDashboard/training">set of training exercises</a> for you to use to learn.</p>
</section>
<section>
<h4>Addons for FRC Dashboard</h4>
<p>We've developed several useful premade addons to help you build your team's custom dashboard. They range from small slider tools to whole extra panes you can add to the interface, and more are being added every day! If you've made something for FRC Dashboard which isn't on this list, we'd love it if you'd <a href="" id="emailLink">tell us about it</a> so we can add it to the list!</p>
<ul id="repolist"></ul>
</section>
</article>
<footer>
<p>Dashboard is developed and maintained by <a href="https://github.com/ErikBoesen">Erik Boesen</a>. Other contributors include <a href="https://github.com/lleontan">Leon Tan</a> and <a href="https://github.com/virtuald">Dustin Spicuzza</a>. Licensing information can be found in the main GitHub repository.
</footer>
<script src="scripts.js"></script>
</body>