mirror of
https://github.com/meshtastic/meshtastic.git
synced 2024-11-10 23:54:17 -08:00
33 lines
757 B
Markdown
33 lines
757 B
Markdown
|
---
|
||
|
id: community-pygui
|
||
|
title: PyGUI application
|
||
|
sidebar_label: PyGUI app
|
||
|
---
|
||
|
|
||
|
Created by @ZebusJesus
|
||
|
|
||
|
PyGUI is a platform independant graphical user interface for meshtastic devices. It allows the sending of messages, changing of a lot of settings, monitoring of packets, and uploading firmware.
|
||
|
|
||
|
![Python GUI](/img/pygui.jpg)
|
||
|
|
||
|
This can be installed using pip.
|
||
|
|
||
|
```powershell title="Windows"
|
||
|
python -m pip install --upgraade meshtastic-pygui
|
||
|
```
|
||
|
|
||
|
```bash title="MacOS/Linux"
|
||
|
pip3 install --upgrade meshtastic-pygui
|
||
|
```
|
||
|
|
||
|
And launched using python.
|
||
|
|
||
|
```powershell title="Windows"
|
||
|
python -m meshtastic_pygui
|
||
|
```
|
||
|
|
||
|
```bash title="MacOS/Linux"
|
||
|
python3 -m meshtastic_pygui
|
||
|
```
|
||
|
|
||
|
The project can be found on [GitHub](https://github.com/ZebusJesus/Meshtastic-PyGUI).
|