meshtastic/docs/software/python-flasher.mdx

201 lines
5.4 KiB
Plaintext
Raw Normal View History

2022-01-31 13:42:48 -08:00
---
2022-10-31 11:13:15 -07:00
id: flasher
2022-11-02 14:50:50 -07:00
title: Using Meshtastic Python Flasher
sidebar_label: Python Flasher
slug: /software/python/flasher
2022-11-03 19:54:37 -07:00
sidebar_position: 5
2022-01-31 13:42:48 -08:00
---
2022-03-08 23:51:46 -08:00
2022-01-31 13:42:48 -08:00
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
2022-05-06 12:53:23 -07:00
import Link from '@docusaurus/Link';
2022-01-31 13:42:48 -08:00
2022-04-29 14:39:06 -07:00
:::caution
Make sure not to power the radio on without first attaching the antenna! You could damage the radio chip!
:::
2022-02-11 22:40:08 -08:00
## Overview
Meshtastic Flasher (aka m-flasher) is a graphical user interface for flashing [supported devices](/docs/hardware) with Meshtastic.
The following operating systems are currently supported: Windows, Mac, and Ubuntu.
2022-02-11 22:40:08 -08:00
2022-01-31 13:42:48 -08:00
## Prerequisites
2022-10-31 21:26:19 -07:00
### Verify that Python3 is installed
<Tabs
groupId="operating-system"
defaultValue="linux"
values={[
{label: 'Linux', value: 'linux'},
{label: 'macOS', value: 'macos'},
{label: 'Windows', value: 'windows'},
]}>
2022-03-11 06:28:57 -08:00
<TabItem value="linux">
2022-03-10 20:11:18 -08:00
```shell title="Check python3 version"
2022-03-11 06:28:57 -08:00
python3 --version
# If version is less than v3.6, please update python3
```
2022-03-10 20:11:18 -08:00
2022-03-11 06:28:57 -08:00
</TabItem>
<TabItem value="macos">
2022-03-10 20:11:18 -08:00
```shell title="Check python3 version"
2022-03-11 06:28:57 -08:00
python3 --version
# If version is less than v3.6, please update python3
```
2022-03-10 20:11:18 -08:00
2022-03-11 06:28:57 -08:00
</TabItem>
<TabItem value="windows">
2022-03-10 20:11:18 -08:00
```shell title="Check python3 version"
2022-03-11 06:28:57 -08:00
python3 --version
# If version is less than v3.9+, please update python3
```
2022-03-10 20:11:18 -08:00
2022-03-11 06:28:57 -08:00
</TabItem>
2022-03-10 20:11:18 -08:00
</Tabs>
2022-10-31 21:26:19 -07:00
### Install or Update Python3
2022-03-10 20:11:18 -08:00
<Tabs
groupId="operating-system"
defaultValue="linux"
values={[
{label: 'Linux', value: 'linux'},
{label: 'macOS', value: 'macos'},
{label: 'Windows', value: 'windows'},
]}>
2022-03-11 06:28:57 -08:00
<TabItem value="linux">
```shell title="Install python3, pip, and venv"
2022-03-11 13:46:33 -08:00
sudo apt update
sudo apt upgrade
sudo apt install -y python3 python3-pip python3-venv
```
2022-03-11 06:28:57 -08:00
</TabItem>
<TabItem value="macos">
2022-03-11 06:28:57 -08:00
- [Download directly from python.org](https://www.python.org/downloads/macos/)
2022-10-31 21:26:19 -07:00
- [Homebrew](https://brew.sh/): `brew install python@3.9`
2022-03-11 06:28:57 -08:00
- [MacPorts](https://www.macports.org/)
2022-03-11 06:28:57 -08:00
</TabItem>
<TabItem value="windows">
2022-03-11 06:28:57 -08:00
- [Download directly from python.org](https://www.python.org/downloads/windows/)
2022-03-11 06:28:57 -08:00
</TabItem>
</Tabs>
2022-05-06 12:46:29 -07:00
2022-11-07 20:53:52 -08:00
### Install or Upgrade App
2022-11-02 14:51:39 -07:00
For **Windows**, the [installer](https://github.com/meshtastic/Meshtastic-gui-installer/releases/download/winapp1.0.3/meshtastic-flasher.zip) will manage installing python and flasher updates automatically.
2022-10-08 07:43:30 -07:00
For **macOS** and **Linux**, it is recommended that you install using `pip`.
2022-11-07 20:53:52 -08:00
Note: Update an existing installation using `pip install meshtastic-flasher -U`
2022-01-31 13:42:48 -08:00
<Tabs
groupId="operating-system"
defaultValue="linux"
values={[
{label: 'Linux', value: 'linux'},
{label: 'macOS', value: 'macos'},
{label: 'Windows', value: 'windows'},
]}>
2022-03-08 23:51:46 -08:00
<TabItem value="linux">
```shell title="Install Meshtastic Flasher"
2022-03-08 23:51:46 -08:00
python3 --version
# ensure you are using at least python v3.6
# change to a directory where you want to create a python virtual environment
mkdir some_dir
cd some_dir
# if the following command fails, it might tell you what package to install
python3 -m venv venv
# activate the python virtual environment
source venv/bin/activate
# your prompt should change - it should include "(venv) in the front
# upgrade pip
pip install --upgrade pip
pip install meshtastic-flasher
```
```shell title="Running Meshtastic Flasher"
2022-03-08 23:51:46 -08:00
meshtastic-flasher
```
2022-02-01 18:05:33 -08:00
2022-01-31 13:42:48 -08:00
</TabItem>
<TabItem value="macos">
```shell title="Install Meshtastic Flasher"
2022-03-08 23:51:46 -08:00
python3 --version
# ensure you are using at least python v3.6
# change to a directory where you want to create a python virtual environment
mkdir some_dir
cd some_dir
python3 -m venv venv
# activate the python virtual environment
source venv/bin/activate
# your prompt should change - it should include "(venv) in the front
# upgrade pip
pip install --upgrade pip
pip install meshtastic-flasher
```
```shell title="Running Meshtastic Flasher"
2022-03-08 23:51:46 -08:00
meshtastic-flasher
```
2022-02-01 18:05:33 -08:00
2022-01-31 13:42:48 -08:00
</TabItem>
<TabItem value="windows">
```shell title="Install Meshtastic Flasher"
2022-03-08 23:51:46 -08:00
# open a command prompt
# create a new directory for the python virtual environment
cd c:\
mkdir some_dir
cd some_dir
# check that python version is sufficient, must be at least v3.9+
python -m venv venv
# activate the python virtual environment
venv\Scripts\activate
# your prompt should change - it should have (venv) at the beginning
pip install meshtastic-flasher
```
```shell title="Running Meshtastic Flasher"
2022-03-08 23:51:46 -08:00
meshtastic-flasher
```
2022-02-01 18:05:33 -08:00
2022-01-31 13:42:48 -08:00
</TabItem>
</Tabs>
## Flashing the Device
2022-02-01 18:05:33 -08:00
2022-10-31 21:26:19 -07:00
The Meshtastic Flasher will flash the latest firmware on esp32 and nrf52 devices. This is a newly developed application (as of February 1, 2022), so there may be some issues discovered as it is tested by users.
2022-02-01 18:05:33 -08:00
There are three steps:
2022-10-31 21:26:19 -07:00
1. Click the **GET VERSIONS** button to get the versions available (from GitHub).
2. Click the **DETECT DEVICE** button to determine the port and device variant connected.
3. Click the **FLASH** button to flash the version selected using the port selected to the device.
2022-02-01 18:05:33 -08:00
## Issues?
If you run into an issue, please create a ticket here: [Flasher Issues](https://github.com/meshtastic/Meshtastic-gui-installer/issues)
The code can be found at the [Meshtastic-gui-installer repo](https://github.com/meshtastic/Meshtastic-gui-installer)
## Known limitations
The following are known limitations:
2022-03-08 23:51:46 -08:00
- Raspberry Pi is not available, since it is arm-based and there are no pre-built libraries for [PySide](https://wiki.qt.io/Qt_for_Python)
2022-10-31 21:26:19 -07:00
- Ubuntu 20.04 is the version used for testing, it may work with other versions.
- See [README](https://github.com/meshtastic/Meshtastic-gui-installer/blob/master/README.md) for more details.