vault / meshtastic-firmware / 0.7.10
meshtastic-firmware @ 0.7.10
integrity
- size
- 12.9 MiB
- downloaded
- last checked
release notes
(This is basically 0.7.9 with a couple of small tweaks - so releasing more broadly)
Wow! This last week has so many more great commits from other devs (mostly @professr). I'm still working on my changes (one more BLE bug still exists I think in ardunio-esp32 but I'm still working on nailing it down - now that my house tasks are complete), but I wanted to get all this new goodness out there.
Highlights of this release:
- @Professr added GPS DOP support, battery % full calculations, a very nice 'polished looking' node status display, and fixed utf8 characters (so Japanese etc... now looks better on the display) and changed display to be event driven.
- @aHVzY2g improved the readme with a new 3D case and added the bluetooth name to the pairing screen
- @rososaurus improved the readme with recommendations on different TBEAM versions
- @zjwhitehead improved the compass display, so it is clearer when you don't have a GPS lock vs the person you are trying to find doesn't have one
- @aHVzY2g and @professr worked together to add OLED brightness control (just longpress on the control button to change the display brightness)
- @mrvdb added support for diffent screen widths
- Sometimes GPS reads would stall - fixed
- Show sw version on boot screen
- Report battery levels to other nodes in mesh (and phone)
download
unix · zip
curl -fL -o 0.7.10.zip https://ratatoskr.space/pkg/meshtastic-firmware/0.7.10.zip
printf '%s %s\n' '1565fa5e2eaf6830eb4202ac5fce5c6ea5d50017381fa1f4bb96de2c55b72500' '0.7.10.zip' | sha256sum -c -
windows · zip
$url = "https://ratatoskr.space/pkg/meshtastic-firmware/0.7.10.zip"
$out = "0.7.10.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "1565fa5e2eaf6830eb4202ac5fce5c6ea5d50017381fa1f4bb96de2c55b72500") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o 0.7.10.tar.gz https://ratatoskr.space/pkg/meshtastic-firmware/0.7.10.tar.gz
printf '%s %s\n' '005da4fb205001a19c98fef0cdaa818058ae9cc5cd98bae2b719101843595a4d' '0.7.10.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "https://ratatoskr.space/pkg/meshtastic-firmware/0.7.10.tar.gz"
$out = "0.7.10.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "005da4fb205001a19c98fef0cdaa818058ae9cc5cd98bae2b719101843595a4d") { throw "sha256 mismatch" }
download via yggdrasil mesh
unix · zip
curl -fL -o 0.7.10.zip http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meshtastic-firmware/0.7.10.zip
printf '%s %s\n' '1565fa5e2eaf6830eb4202ac5fce5c6ea5d50017381fa1f4bb96de2c55b72500' '0.7.10.zip' | sha256sum -c -
windows · zip
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meshtastic-firmware/0.7.10.zip"
$out = "0.7.10.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "1565fa5e2eaf6830eb4202ac5fce5c6ea5d50017381fa1f4bb96de2c55b72500") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o 0.7.10.tar.gz http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meshtastic-firmware/0.7.10.tar.gz
printf '%s %s\n' '005da4fb205001a19c98fef0cdaa818058ae9cc5cd98bae2b719101843595a4d' '0.7.10.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meshtastic-firmware/0.7.10.tar.gz"
$out = "0.7.10.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "005da4fb205001a19c98fef0cdaa818058ae9cc5cd98bae2b719101843595a4d") { throw "sha256 mismatch" }
| artifact | format | size | hashes |
|---|---|---|---|
| 0.7.10.zip | zip | 12.9 MiB |
blake3-24 27cfcbbd894d7cfa8ce1f5d8ab2a5970d966b676c8465e15
sha256 1565fa5e2eaf6830eb4202ac5fce5c6ea5d50017381fa1f4bb96de2c55b72500
sha1 eca242a4da6b0ce1fc4502166a2e833958e8deec
|
| 0.7.10.tar.gz | tar.gz | 12.9 MiB |
blake3-24 11c192dce4b4069fb60fb948bfdf707b7ac31fe8ea99a85a
sha256 005da4fb205001a19c98fef0cdaa818058ae9cc5cd98bae2b719101843595a4d
sha1 01583406ad7ad9e49969bac446a56066c2ecbc1e
|
install
bazel
http_archive(
name = "meshtastic-firmware",
urls = ["https://ratatoskr.space/pkg/meshtastic-firmware/0.7.10.tar.gz"],
integrity = "sha256-AF2k+yBQAaGcmP7wzaqBgFiunMXNmLritxkQGENZWk0=",
strip_prefix = "meshtastic-firmware-0.7.10",
)
zig
.url = "https://ratatoskr.space/pkg/meshtastic-firmware/0.7.10.tar.gz",
install via yggdrasil mesh
bazel
http_archive(
name = "meshtastic-firmware",
urls = ["http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meshtastic-firmware/0.7.10.tar.gz"],
integrity = "sha256-AF2k+yBQAaGcmP7wzaqBgFiunMXNmLritxkQGENZWk0=",
strip_prefix = "meshtastic-firmware-0.7.10",
)
zig
.url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meshtastic-firmware/0.7.10.tar.gz",