mirror of
https://github.com/meshtastic/firmware.git
synced 2025-04-25 09:42:35 +00:00
update credits
This commit is contained in:
parent
c1f8c8cca4
commit
9b0e329bb9
19
README.md
19
README.md
@ -1,4 +1,5 @@
|
|||||||
# Meshtastic-esp32
|
# Meshtastic-esp32
|
||||||
|
|
||||||
This is the device side code for the [meshtastic.org](https://www.meshtastic.org) project.
|
This is the device side code for the [meshtastic.org](https://www.meshtastic.org) project.
|
||||||
|
|
||||||

|

|
||||||
@ -18,13 +19,15 @@ This project is currently early-alpha, but if you have questions please [join ou
|
|||||||
This software is 100% open source and developed by a group of hobbyist experimenters. No warranty is provided, if you'd like to improve it - we'd love your help. Please post in the chat.
|
This software is 100% open source and developed by a group of hobbyist experimenters. No warranty is provided, if you'd like to improve it - we'd love your help. Please post in the chat.
|
||||||
|
|
||||||
## Supported hardware
|
## Supported hardware
|
||||||
We currently support three models of radios. The [TTGO T-Beam](https://www.aliexpress.com/item/4000119152086.html), [TTGO LORA32](https://www.banggood.com/LILYGO-TTGO-LORA32-868Mhz-SX1276-ESP32-Oled-Display-bluetooth-WIFI-Lora-Development-Module-Board-p-1248652.html?cur_warehouse=UK) and the [Heltec LoRa 32](https://heltec.org/project/wifi-lora-32/). Most users should buy the T-Beam and a 18650 battery (total cost less than $35). Make
|
|
||||||
|
We currently support three models of radios. The [TTGO T-Beam](https://www.aliexpress.com/item/4000119152086.html), [TTGO LORA32](https://www.banggood.com/LILYGO-TTGO-LORA32-868Mhz-SX1276-ESP32-Oled-Display-bluetooth-WIFI-Lora-Development-Module-Board-p-1248652.html?cur_warehouse=UK) and the [Heltec LoRa 32](https://heltec.org/project/wifi-lora-32/). Most users should buy the T-Beam and a 18650 battery (total cost less than \$35). Make
|
||||||
sure to buy the frequency range which is legal for your country. For the USA, you should buy the 915MHz version. Getting a version that include a screen
|
sure to buy the frequency range which is legal for your country. For the USA, you should buy the 915MHz version. Getting a version that include a screen
|
||||||
is optional, but highly recommended.
|
is optional, but highly recommended.
|
||||||
|
|
||||||
See (meshtastic.org) for 3D printable cases.
|
See (meshtastic.org) for 3D printable cases.
|
||||||
|
|
||||||
## Installing the firmware
|
## Installing the firmware
|
||||||
|
|
||||||
Prebuilt binaries for the supported radios is available in our [releases](https://github.com/meshtastic/Meshtastic-esp32/releases). Your initial installation has to happen over USB from your Mac, Windows or Linux PC. Once our software is installed, all future software updates happen over bluetooth from your phone.
|
Prebuilt binaries for the supported radios is available in our [releases](https://github.com/meshtastic/Meshtastic-esp32/releases). Your initial installation has to happen over USB from your Mac, Windows or Linux PC. Once our software is installed, all future software updates happen over bluetooth from your phone.
|
||||||
|
|
||||||
The instructions currently require a few commmand lines, but it should be pretty straightforward. Please post comments on our group chat if you have problems or successes. Steps to install:
|
The instructions currently require a few commmand lines, but it should be pretty straightforward. Please post comments on our group chat if you have problems or successes. Steps to install:
|
||||||
@ -34,6 +37,7 @@ The instructions currently require a few commmand lines, but it should be pretty
|
|||||||
3. Run "pip install --upgrade esptool" to get esptool installed on your machine
|
3. Run "pip install --upgrade esptool" to get esptool installed on your machine
|
||||||
4. Connect your radio to your USB port
|
4. Connect your radio to your USB port
|
||||||
5. Confirm that your device is talking to your PC by running "esptool.py chip_id". The Heltec build also works on the TTGO LORA32 radio. You should see something like:
|
5. Confirm that your device is talking to your PC by running "esptool.py chip_id". The Heltec build also works on the TTGO LORA32 radio. You should see something like:
|
||||||
|
|
||||||
```
|
```
|
||||||
mydir$ esptool.py chip_id
|
mydir$ esptool.py chip_id
|
||||||
esptool.py v2.6
|
esptool.py v2.6
|
||||||
@ -51,12 +55,14 @@ Warning: ESP32 has no Chip ID. Reading MAC instead.
|
|||||||
MAC: 24:6f:28:b5:36:71
|
MAC: 24:6f:28:b5:36:71
|
||||||
Hard resetting via RTS pin...
|
Hard resetting via RTS pin...
|
||||||
```
|
```
|
||||||
|
|
||||||
6. cd into the directory where the release zip file was expanded.
|
6. cd into the directory where the release zip file was expanded.
|
||||||
7. Install the correct firmware for your board with "device-install.sh firmware-_board_-_country_.bin". For instance "./device-install.sh firmware-HELTEC-US-0.0.3.bin".
|
7. Install the correct firmware for your board with "device-install.sh firmware-_board_-_country_.bin". For instance "./device-install.sh firmware-HELTEC-US-0.0.3.bin".
|
||||||
|
|
||||||
Note: If you have previously installed meshtastic, you don't need to run this full script instead just run "esptool.py --baud 921600 write_flash 0x10000 firmware-_board_-_country_.bin". This will be faster, also all of your current preferences will be preserved.
|
Note: If you have previously installed meshtastic, you don't need to run this full script instead just run "esptool.py --baud 921600 write*flash 0x10000 firmware-\_board*-_country_.bin". This will be faster, also all of your current preferences will be preserved.
|
||||||
|
|
||||||
You should see something like this:
|
You should see something like this:
|
||||||
|
|
||||||
```
|
```
|
||||||
kevinh@kevin-server:~/development/meshtastic/meshtastic-esp32/release/latest$ ./device-install.sh firmware-TBEAM-US-0.1.8.bin
|
kevinh@kevin-server:~/development/meshtastic/meshtastic-esp32/release/latest$ ./device-install.sh firmware-TBEAM-US-0.1.8.bin
|
||||||
Trying to flash firmware-TBEAM-US-0.1.8.bin, but first erasing and writing system information
|
Trying to flash firmware-TBEAM-US-0.1.8.bin, but first erasing and writing system information
|
||||||
@ -120,10 +126,12 @@ Hash of data verified.
|
|||||||
Leaving...
|
Leaving...
|
||||||
Hard resetting via RTS pin...
|
Hard resetting via RTS pin...
|
||||||
```
|
```
|
||||||
|
|
||||||
8. The board will boot and show the Meshtastic logo.
|
8. The board will boot and show the Meshtastic logo.
|
||||||
9. Please post a comment on our chat so we know if these instructions worked for you ;-). If you find bugs/have-questions post there also - we will be rapidly iterating over the next few weeks.
|
9. Please post a comment on our chat so we know if these instructions worked for you ;-). If you find bugs/have-questions post there also - we will be rapidly iterating over the next few weeks.
|
||||||
|
|
||||||
## Meshtastic Android app
|
## Meshtastic Android app
|
||||||
|
|
||||||
The source code for the (optional) Meshtastic Android app is [here](https://github.com/meshtastic/Meshtastic-Android).
|
The source code for the (optional) Meshtastic Android app is [here](https://github.com/meshtastic/Meshtastic-Android).
|
||||||
|
|
||||||
Alpha test builds are current available by opting into our alpha test group. See (www.meshtastic.org) for instructions.
|
Alpha test builds are current available by opting into our alpha test group. See (www.meshtastic.org) for instructions.
|
||||||
@ -139,9 +147,10 @@ We'd love to have you join us on this merry little project. Please see our [dev
|
|||||||
|
|
||||||
This project is run by volunteers. Past contributors include:
|
This project is run by volunteers. Past contributors include:
|
||||||
|
|
||||||
* @astro-arphid: Added support for 433MHz radios in europe.
|
- @astro-arphid: Added support for 433MHz radios in europe.
|
||||||
* @claesg: Various documentation fixes and 3D print enclosures
|
- @claesg: Various documentation fixes and 3D print enclosures
|
||||||
* @girtsf: So far our CI system, but soon lots of device improvements
|
- @girtsf: Lots of improvements
|
||||||
|
- @spattinson: Fixed interrupt handling for the AXP192 part
|
||||||
|
|
||||||
# IMPORTANT DISCLAIMERS AND FAQ
|
# IMPORTANT DISCLAIMERS AND FAQ
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user