-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (38 loc) · 1.66 KB
/
Copy pathindex.html
File metadata and controls
42 lines (38 loc) · 1.66 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Libre Computer GPIO Pinout</title>
<meta name="description" content="Interactive GPIO pinout and pinmux reference for Libre Computer single-board computers.">
<link rel="icon" href="data:,">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header id="topbar">
<div id="brand">
<span id="brand-name">Libre Computer</span>
<span id="brand-sub">GPIO Pinout</span>
</div>
<div id="controls">
<label for="board-select">Board</label>
<select id="board-select" aria-label="Select board"></select>
<input id="search" type="search" placeholder="Search: GPIOX_12, I2C, pin 7, B4…" autocomplete="off" spellcheck="false">
</div>
</header>
<nav id="legend-bar" aria-label="Mux classes"><div id="legend"></div></nav>
<main>
<section id="diagram" aria-label="Pin headers"></section>
<aside id="panel">
<button id="sheet-close" type="button">Close ×</button>
<div id="pin-detail"><p class="muted">Each pin's square is banded: the top is the board's colour for that pin (yellow I2C, blue SPI, orange 3.3V), and below it one vertical stripe per other mux the pad can reach. A GPIO-only pin has stripes alone. Select a pin for its full pinmux, again to close, or select a legend entry to filter.</p></div>
</aside>
</main>
<footer>
Pin data from <a href="https://github.com/libre-computer-project/libretech-wiring-tool">libretech-wiring-tool</a> (MIT)
· <a href="https://libre.computer">libre.computer</a>
</footer>
<div id="tooltip" hidden></div>
<script src="js/app.js"></script>
</body>
</html>