Merge pull request #244 from jfirwin/fix-navigation

Navigation work
This commit is contained in:
Foster Irwin 2022-02-15 18:52:01 -07:00 committed by GitHub
commit a9bf305493
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
11 changed files with 150 additions and 35 deletions

View file

@ -1,7 +1,7 @@
--- ---
id: overview id: overview
title: Overview title: Maintaining Documentation
sidebar_label: Overview sidebar_label: Maintaining Documentation
slug: /about-documentation slug: /about-documentation
--- ---
Meshtastic documentation is an important ingredient to the overall project. We want users to hit the ground running with the information they need right at their finger tips. This section will discuss the documentation software stack, file organization, and style guides. Meshtastic documentation is an important ingredient to the overall project. We want users to hit the ground running with the information they need right at their finger tips. This section will discuss the documentation software stack, file organization, and style guides.

View file

@ -1,7 +1,7 @@
--- ---
id: overview id: overview
title: Overview title: Contribute to Meshtastic
sidebar_label: Overview sidebar_label: Contribute to Meshtastic
slug: /developers slug: /developers
--- ---
# How to Help # How to Help

View file

@ -0,0 +1,57 @@
---
id: clients
title: Clients Overview
sidebar_label: Clients Overview
---
import { DownloadCard } from '/src/pages/downloads/_components/DownloadCard.tsx'
## Overview
There are many ways to connect to your newly flashed device. Below is a quickstart for each client that you can use to connect to your radio.
### Commandline Interface (CLI)
The CLI is currently the best way to manage your settings. It is feature rich and well documented. The [settings pages](/docs/settings) have examples for each user preference for the device. The CLI is included in the [Meshtastic-python](https://github.com/meshtastic/Meshtastic-python) project. If you'd like to use python to interface with a device, see the [API documentation](https://python.meshtastic.org).
To install/upgrade Meshtastic-python, see below:
```bash title="Install Meshtastic-python (includes CLI)"
pip install meshtastic
```
```bash title="Upgrade Meshtastic-python (includes CLI)"
pip install --upgrade meshtastic
```
### Mobile Client Downloads
<ul
style={{
position: "relative",
display: "grid",
gap: "1.5rem",
gridTemplateColumns: "repeat(auto-fill, minmax(280px, 1fr))",
paddingLeft: "0",
}}
>
<DownloadCard
client="Android"
imgUrl="https://play.google.com/intl/en_us/badges/static/images/badges/en_badge_web_generic.png"
url="https://play.google.com/store/apps/details?id=com.geeksville.mesh&referrer=utm_source=downloads-page"
notes={["To sideload, ",<a href="https://github.com/meshtastic/Meshtastic-Android/releases/latest" rel="noreferrer" target="_blank">download the latest .apk</a>," from Github", ]}
/>
<DownloadCard
client="iOS"
url="https://testflight.apple.com/join/c8nNl8q1"
buttonText="Download on TestFlight"
notes="Currently only available in TestFlight"
/>
</ul>
### Serial
Using your preferred program (PuTTy, Serial, etc) connect to your device with the following settings to see the logs in real time.
| Baudrate | Data Bits | Parity | Stop Bits |
| :------: | :-------: | :----: | :-------: |
| `921600` | `8` | `None` | `1` |
### Web

View file

@ -1,7 +1,7 @@
--- ---
id: overview id: overview
title: Overview title: Getting Started
sidebar_label: Overview sidebar_label: Getting Started
slug: /getting-started slug: /getting-started
--- ---

View file

@ -1,11 +1,15 @@
--- ---
id: meshtastic-flasher id: meshtastic-flasher
title: Using Meshtastic Flasher GUI title: Using Meshtastic Flasher
sidebar_label: Meshtastic Flasher GUI sidebar_label: Using Meshtastic Flasher
--- ---
import Tabs from '@theme/Tabs'; import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem'; import TabItem from '@theme/TabItem';
## Overview
Meshtastic Flasher is a graphical user interface for flashing [supported devices](/docs/hardware) with Meshtastic.
## Prerequisites ## Prerequisites
Install Meshtastic Flasher by either [downloading the executable file](https://github.com/meshtastic/Meshtastic-gui-installer/releases) or installing using `pip`. The following operating systems are: Windows, Mac, and Ubuntu. Install Meshtastic Flasher by either [downloading the executable file](https://github.com/meshtastic/Meshtastic-gui-installer/releases) or installing using `pip`. The following operating systems are: Windows, Mac, and Ubuntu.

View file

@ -1,7 +1,7 @@
--- ---
id: overview id: overview
title: Overview title: Hardware
sidebar_label: Overview sidebar_label: Hardware
slug: /hardware slug: /hardware
--- ---

View file

@ -1,7 +1,7 @@
--- ---
id: overview id: overview
title: Overview title: Legal
sidebar_label: Overview sidebar_label: Legal
slug: /legal slug: /legal
--- ---
## Disclaimers ## Disclaimers

View file

@ -1,7 +1,7 @@
--- ---
id: overview id: overview
title: Overview title: Software
sidebar_label: Overview sidebar_label: Software
slug: /software slug: /software
--- ---

View file

@ -1,7 +1,7 @@
--- ---
id: overview id: overview
title: Overview title: Device Settings
sidebar_label: Overview sidebar_label: Device Settings
slug: /settings slug: /settings
--- ---
import Tabs from '@theme/Tabs'; import Tabs from '@theme/Tabs';

View file

@ -34,6 +34,18 @@ const config = {
activeBasePath: "docs/academy", activeBasePath: "docs/academy",
}, },
*/ */
/*
{
label: "About Meshtastic",
to: "docs/about",
activeBasePath: "docs/about",
},
*/
{
label: "Showcase",
to: "showcase",
activeBasePath: "showcase",
},
{ {
label: "Documentation", label: "Documentation",
items: [ items: [
@ -73,11 +85,6 @@ const config = {
to: "downloads", to: "downloads",
activeBasePath: "downloads", activeBasePath: "downloads",
}, },
{
label: "Showcase",
to: "showcase",
activeBasePath: "showcase",
},
{ {
href: "https://meshtastic.discourse.group", href: "https://meshtastic.discourse.group",
label: "Forum", label: "Forum",
@ -118,10 +125,6 @@ const config = {
{ {
title: 'Community', title: 'Community',
items: [ items: [
{
label: 'YouTube',
to: 'https://www.youtube.com/meshtastic',
},
{ {
label: 'Discord', label: 'Discord',
to: 'https://discord.com/invite/UQJ5QuM7vq', to: 'https://discord.com/invite/UQJ5QuM7vq',
@ -130,6 +133,14 @@ const config = {
label: 'Forum', label: 'Forum',
to: 'https://meshtastic.discourse.group', to: 'https://meshtastic.discourse.group',
}, },
{
label: 'Reddit',
to: 'https://reddit.com/r/meshtastic',
},
{
label: 'YouTube',
to: 'https://www.youtube.com/meshtastic',
},
], ],
}, },
{ {

View file

@ -1,5 +1,5 @@
module.exports = { module.exports = {
About: { Software: {
Software: [ Software: [
"software/overview", "software/overview",
{ {
@ -95,23 +95,39 @@ module.exports = {
], ],
}, },
], ],
"Additional Documentation": [
{type: "ref", id: "getting-started/overview"},
{type: "ref", id: "software/settings/overview"},
{type: "ref", id: "hardware/overview"},
{type: "ref", id: "developers/overview"},
{type: "ref", id: "about-documentation/overview"},
{type: "ref", id: "legal/overview"},
],
}, },
GettingStarted: { Configuration: {
"Getting Started": [ "Getting Started": [
"getting-started/overview", "getting-started/overview",
"getting-started/faq", "getting-started/faq",
{ {
"Flashing firmware": [ "Flashing firmware": [
"getting-started/meshtastic-flasher", "getting-started/meshtastic-flasher",
{
"Manual Method": [
"getting-started/flashing-esp32", "getting-started/flashing-esp32",
"getting-started/flashing-nrf52", "getting-started/flashing-nrf52",
], ],
}, },
"getting-started/concepts",
], ],
}, },
Settings: { {
Settings: [ "Connect to Device": [
"getting-started/clients",
],
},
"getting-started/concepts",
],
"Device Settings": [
"software/settings/overview", "software/settings/overview",
"software/settings/channel", "software/settings/channel",
"software/settings/gps", "software/settings/gps",
@ -136,6 +152,13 @@ module.exports = {
], ],
}, },
], ],
"Additional Documentation": [
{type: "ref", id: "hardware/overview"},
{type: "ref", id: "software/overview"},
{type: "ref", id: "developers/overview"},
{type: "ref", id: "about-documentation/overview"},
{type: "ref", id: "legal/overview"},
],
}, },
Hardware: { Hardware: {
Hardware: [ Hardware: [
@ -162,6 +185,14 @@ module.exports = {
], ],
}, },
], ],
"Additional Documentation": [
{type: "ref", id: "getting-started/overview"},
{type: "ref", id: "software/settings/overview"},
{type: "ref", id: "software/overview"},
{type: "ref", id: "developers/overview"},
{type: "ref", id: "about-documentation/overview"},
{type: "ref", id: "legal/overview"},
],
}, },
Contribute: { Contribute: {
Developers: [ Developers: [
@ -192,9 +223,7 @@ module.exports = {
], ],
}, },
], ],
}, "Maintaining Documentation": [
Documentation: {
"About Documentation": [
"about-documentation/overview", "about-documentation/overview",
{ {
Dependencies: [ Dependencies: [
@ -214,6 +243,13 @@ module.exports = {
], ],
}, },
], ],
"Additional Documentation": [
{type: "ref", id: "getting-started/overview"},
{type: "ref", id: "software/settings/overview"},
{type: "ref", id: "hardware/overview"},
{type: "ref", id: "software/overview"},
{type: "ref", id: "legal/overview"},
],
}, },
Legal: { Legal: {
Legal: [ Legal: [
@ -222,5 +258,12 @@ module.exports = {
"legal/trademark", "legal/trademark",
"legal/privacy", "legal/privacy",
], ],
"Additional Documentation": [
{type: "ref", id: "getting-started/overview"},
{type: "ref", id: "software/settings/overview"},
{type: "ref", id: "hardware/overview"},
{type: "ref", id: "software/overview"},
{type: "ref", id: "developers/overview"},
],
}, },
}; };