Merge pull request #222 from jfirwin/meshtastic-flasher

initial meshtastic flasher docs
This commit is contained in:
Foster Irwin 2022-01-31 20:16:21 -07:00 committed by GitHub
commit 97024f8a4a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 57 additions and 0 deletions

View file

@ -0,0 +1,56 @@
---
id: meshtastic-flasher
title: Using Meshtastic Flasher GUI
sidebar_label: Meshtastic Flasher GUI
---
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
## Prerequisites
Install Meshtastic Flasher by [downloading the executable file](https://github.com/meshtastic/Meshtastic-gui-installer/releases) or installing using `pip`.
<Tabs
groupId="operating-system"
defaultValue="linux"
values={[
{label: 'Linux', value: 'linux'},
{label: 'macOS', value: 'macos'},
{label: 'Windows', value: 'windows'},
]}>
<TabItem value="linux">
```bash title="Install Meshtastic Flasher"
pip install meshtastic-flasher
```
</TabItem>
<TabItem value="macos">
```bash title="Install Meshtastic Flasher"
pip install meshtastic-flasher
```
</TabItem>
<TabItem value="windows">
```bash title="Install Meshtastic Flasher"
pip install meshtastic-flasher
```
</TabItem>
</Tabs>
## Flashing the Device
<Tabs
groupId="chipset"
defaultValue="esp32"
values={[
{label: 'ESP32', value: 'esp32'},
{label: 'nRF', value: 'nrf'},
]}>
<TabItem value="esp32">
</TabItem>
<TabItem value="nrf">
</TabItem>
</Tabs>

View file

@ -102,6 +102,7 @@ module.exports = {
"getting-started/faq",
{
"Flashing firmware": [
"getting-started/meshtastic-flasher",
"getting-started/flashing-esp32",
"getting-started/flashing-nrf52",
],