-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
107 lines (101 loc) · 5.22 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Airmesh User Documentation</title>
<link rel="stylesheet" href="./css/index.css">
</head>
<body>
<header class="main-header">
<div class="logo">
<h1> <a href="https://docs.aviavin.com/" class="logo">Airmesh Documentation</a></h1>
</div>
<nav class="top-nav">
<ul>
<li><a href="https://docs.aviavin.com/">Home</a></li>
<!-- <li><a href="#">Downloads</a></li>
<li><a href="#">Community</a></li> -->
<li><a href="https://aviavin.com/contact-us/">Support</a></li>
</ul>
</nav>
</header>
<div class="main-content">
<nav class="sidebar">
<!-- <h2>Documentation</h2> -->
<ul>
<li><a href="#before-setup">Before Airmesh First Setup</a></li>
<li><a href="#first-setup">First Setup Airmesh</a></li>
<li><a href="#flight-control">Flight Control Setting</a></li>
<li><a href="#ground-control">Ground Control Stations</a></li>
</ul>
</nav>
<div class="content-area">
<!-- Before Airmesh First Setup -->
<section id="before-setup">
<h2>Before Airmesh First Setup</h2>
<p>Before starting the Airmesh setup, ensure the following:</p>
<ol>
<li>On your PC/laptop, register on Tailscale and obtain an authorization key.</li>
<li>Save the key securely in a notepad or a known location, as the auth key will not be shown again.
</li>
</ol>
<p><strong>Note:</strong> The authorization key will be required during the activation step.</p>
</section>
<!-- First Setup Airmesh -->
<section id="first-setup">
<h2>First Setup Airmesh</h2>
<ol>
<li>Follow the connection diagram to connect the components.</li>
<li>Turn on your laptop/PC.</li>
<li>Power up the circuit using a 5-volt power supply through the servo cable.</li>
<li>Wait for the Airmesh Wi-Fi hotspot/access point to appear.</li>
<li>Once the Airmesh Wi-Fi is available, connect to the network.</li>
<li>Open a browser and type <a href="http://10.0.2.100:5500">http://10.0.2.100:5500</a>, then press
Enter.</li>
<li>You will now see the Tailscale User Interface (UI).</li>
<li>Click the <strong>"Connect to Tailscale"</strong> button in the UI.</li>
<li>When prompted, enter your saved pre-auth key in the <strong>"Enter your pre-Auth Key"</strong>
input box.</li>
<li>Click the button below the input box to proceed.</li>
<li>Once successful, you will see a success message.</li>
<li>Go to the Tailscale admin window to verify if the new device has been added.</li>
<li>If added, the device can now directly communicate with other devices in the Tailscale network.
</li>
</ol>
<p><strong>Note:</strong> If you encounter any issues during the VPN setup, please <a
href="https://aviavin.com/contact-us/" class="contact-us">contact us.</a></p>
<p>A video reference for all the above steps is available. Please refer to it for further assistance.
</p>
</section>
<!-- Flight Control Setting -->
<section id="flight-control">
<h2>Flight Control Setting</h2>
<ol>
<li>Connect to the Airmesh Wi-Fi network.</li>
<li>Open a browser and navigate to <a href="http://10.0.2.100:3000">http://10.0.2.100:3000</a>.</li>
<li>Click on the <strong>"Flight Controllers"</strong> option on the left side of the page.</li>
<li>The Flight Controller setting page will open.</li>
<li>Follow the video reference provided to complete the setup.</li>
</ol>
</section>
<!-- Ground Control Stations -->
<section id="ground-control">
<h2>Ground Control Stations</h2>
<ol>
<li>Ensure your Ground Control Station PC or mobile device is connected to the Tailscale network.
</li>
<li>Follow the video reference to control the drone using the cellular service.</li>
<li>If you encounter any issues, please <a href="https://aviavin.com/contact-us/"
class="contact-us">contact us.</a></li>
</ol>
</section>
</div>
</div>
<footer class="main-footer">
<p>© 2024 Airmesh. All rights reserved. For support, <a href="https://aviavin.com/contact-us/">contact
us.</a></p>
</footer>
<script src="./js/index.js"></script>
</body>
</html>