-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
50 lines (47 loc) · 2.23 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>JetsonGPIO2LinuxNumber</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/picnic">
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/github-fork-ribbon-css/0.2.3/gh-fork-ribbon.min.css" />
</head>
<body>
<section class="flex one two-900 center">
<div>
<div class="flex one center">
<div>
<img src="chip-1710300.svg" alt="Chip, Icon, Micro, Processor, Computer, Cpu, Symbol"/>
</div>
<div>
<h1>convertGPIO2LinuxNumber</h1>
Converts Jetson Xavier NX GPIO Pin name (e.g. GPIO06, or SDMMC_DAT2) to the Linux GPIO Number
</div>
<form class="" action="#" onsubmit="convertOnClick()">
<input id="signalName">
<input type="submit" value="Convert">
</form>
<h2>
<span id="result" style="white-space: pre;"></span>
</h2>
</div>
<small>
<em>
Credits:
<a href="https://github.com/fabiomanz/JetsonGPIO2LinuxNumber">converter</a> by <a href="https://github.com/fabiomanz">fabiomanz</a>,
web app by <a href="https://github.com/tknobi">tknobi</a>,
<a href="https://picnicss.com/">Picnic CSS</a> by <a href="https://github.com/franciscop">franciscop</a>,
<a href="https://github.com/simonwhitaker/github-fork-ribbon-css">github-fork-ribbon-css</a> by <a href="https://github.com/simonwhitaker">simonwhitaker</a>,
image by <a href="https://pixabay.com/users/sinisamaric1-3044277/?utm_source=link-attribution&utm_medium=referral&utm_campaign=image&utm_content=1710300">Sinisa Maric</a> from <a href="https://pixabay.com/?utm_source=link-attribution&utm_medium=referral&utm_campaign=image&utm_content=1710300">Pixabay</a>
</em>
</small>
</div>
</section>
<a class="github-fork-ribbon" href="https://github.com/fabiomanz/JetsonGPIO2LinuxNumber"
data-ribbon="Fork me on GitHub" title="Fork me on GitHub">Fork me on GitHub</a>
<script src="convertGPIO2LinuxNumber.js"></script>
</body>
</html>