frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

Open in hackernews

MeshCore, a new lightweight, hybrid routing mesh protocol for packet radios

https://github.com/ripplebiz/MeshCore
101•cuu508•2mo ago

Comments

sparrish•2mo ago
I don't understand how this is different from Meshtastic. Can someone compare and contrast?
cschmittiey•2mo ago
so far it seems like better routing protocol, the ability to set what path your packets take if needed, and some different ideas about roles on the network. i’ve been playing with it for a week or so and people at my hackerspace have been contributing and i’m excited to see how it does, but it’s not good enough to the point where everyone is just going to switch over. some board support and polish needed before that happens imo
aeblyve•2mo ago
Meshtastic has unicast next-hop routing since firmware version 2.6 released, like, a week ago.
linker3000•2mo ago
About a month or so ago now in the alphas.
apitman•2mo ago
> Unlike Meshtastic, which is tailored for casual LoRa communication, or Reticulum, which offers advanced networking, MeshCore balances simplicity with scalability, making it ideal for custom embedded solutions., where devices (nodes) can communicate over long distances by relaying messages through intermediate nodes
sparrish•2mo ago
Yeah... that doesn't say anything. "Advanced networking"?

Meshtastic can also communicate over long distances by relaying through other nodes.

So what's the difference?

linker3000•2mo ago
Right now, Meshtastic's core comms protocol is based on flood messaging - no significant smart routing, although the Devs have recently introduced some route discovery features on private channels, but not in the public one.

MeshCore started out with the concept of static router nodes as well as clients, so it performs better if there is a router nearby to use, otherwise it falls back to flooding.

Nux•2mo ago
This ^.

I struggled to get messages delivered with Meshtastic in my location. I'll try Meshcore when I get some time.

jeffhuys•2mo ago
To provide another perspective: where I live, I can basically reach the entire country if I’m lucky (Netherlands) or my entire city when I’m extremely unlucky. It totally depends on the amount of people / nodes strengthening the network. I’m deploying nodes near dead spots up in trees and the like, with solar panels and batteries, to work even better and without power.
ConanRus•2mo ago
why don't just contribute to Meshtastic then?
linker3000•2mo ago
The devs involved apparently tried...then MeshCore became a thing.

You can read between the lines here.

meshtdevssuck•2mo ago
JAQing off eh?

Have folks ever tired to even communicate with the devs? They are the most toxic group of individuals that I have ever encountered. Saying that they act like children is insulting to little kids.

sunshine-o•2mo ago
Those are still very experimental and Reticulum is definitely a research project. So I don't mind them exploring different designs and ideas.

I believe the most important is to keep an option to be able to setup gateways between the different networks and if possible the messaging systems.

Like for example yggdrasil, tor, I2P dn42 and the clearnet are interconnected. What is really cool.

bb88•2mo ago
The previous version wasn't "flood" routing. Because flood routing would have worked better. I called it "spray and pray" routing.

It was something like this:

1. Router repeats first

2. Weakest repeating device by signal strength next

What if both of those options are in a basement, or say have a damaged antenna, or are miles in the opposite direction of where you want the signal to go?

By simply putting up a router somewhere you might be severely impacting the comms of people at your edge.

bb88•2mo ago
Meshtastic's routing system (up until this last version), wasn't great. I haven't tried the latest version, because it's gonna need to take a while for people to update their firmwares.

Also, a lot of nodes tend to flood their battery state for the entire network, which uses up the airtime for something that could be more important like routing information, and also wastes their battery.

Even though things like AlohaNet have been around for years, Meshtastic chose to reinvent the wheel. The primary difference is that Meshcore started with "routing" first, and then save the airtime and therefore battery for routing messages.

geerlingguy did a video on it, and it's highly worth while checking it out. I think he was kind enough to use the term "Beta".

Supposedly the new firmware from Meshtastic fixes a lot of this, but it's gonna be a while for people to upgrade, and I'm not too keen on wasting time again on something if it's not fit to work for it's stated purpose originally.

apitman•2mo ago
Really excited about all the new mesh networking protocols being worked on. As mentioned in the repo, also check out Meshtastic and Reticulum.

Would love to see something like this for Bluetooth/wifi. Maybe Wifi Aware will be that.

I think local-first networking is going to be an important part of local-first apps.

dfc•2mo ago
Reticulum will work over wifi.
ThinkBeat•2mo ago
In so far as communicating without going via the internet. This would work by 2 or more people sharing the same wifi network, but they they talked to each other would be over Reticulum?

Can a wifi mesh with no internet connection be made between different routers / access points?

Really I am wondering if people cooperating by operating wifi areas t could expand quickly in more populated places.

Perhaps the trick would be to run them all the wifi networks fully open?

Yeah basically how does one create a city wide mesh with a few hundred people involved?

apitman•2mo ago
How's the UX? I'm looking for something along the lines of my device uses bluetooth to scan for local devices, I select the ones I want to form a mesh with, the owners of those devices confirm, then we're in a hi-speed wifi mesh.
dccoolgai•2mo ago
Meshtastic UI is pretty far along that path right now. You can purchase a device for like $50ish that gives you a few miles of reach in the right conditions and has a decent UI built in (on the latest rev). If you want to run firmware on chips and use UI from your phone over Bluetooth you can run on like $12ish per endpoint.
apitman•2mo ago
It doesn't result in a high speed local network I could use for transferring files or hosting a LAN party though, right?
recrof•2mo ago
MeshCore also works via esp-now
brunoqc•2mo ago
Is radio like LoRa actually usable for useful things like file transfer, or is it more like a toy?
babuloseo•2mo ago
peopple have done loop to loop picture or video transfers so far, but usually higher bandwith is better, Lora supports 2.4ghz so probably do able in that range
aeblyve•2mo ago
"It depends". Out-of-the-box Meshtastic configurations are tailored more for relatively infrequent and short plaintext messages. You can look at nominal data rates here: https://meshtastic.org/docs/overview/radio-settings/#data-ra...

It is intentionally designed for longer range, with lower datarates, with lower power consumption. It's in the name. "LOng RAnge".

Not to be too annoying but "Radio like LoRa" reads to me as "microwave" which includes "WiFi" which is plausibly something you use for file transfer all the time. So some more clarification would be helpful.

0x1ch•2mo ago
Out of the box, it can be useful depending on the infrastructure of your area. I live in the Seattle area and we have a strong Meshtastic network here. I can occasionally even can see ACKs / testing from Vancouver CA. I own a node that sits at home all day and there's always messages being received in the public LongFast channels. The protocol makes use of all nodes for any type of messaging, so private channels also benefit.

As for files, not possible out of the box for most people, but tools like ATAK-Civ can make use of 'data packages' and send them over radio. I've used it to successfully send memes and map files in testing.

linker3000•2mo ago
A few people have implemented file transfers over Meshtastic. I believe there's a repo out there with Zmodem over Meshtastic.
Rebelgecko•2mo ago
It's not ideal for file transfer due to low speeds. But it's great for things like having a bunch of battery powered sensors in a field somewhere that report some telemetry every hour. Or in the meshtastic case, sharing your location and short text messages in areas without cell service.
zdp7•2mo ago
A big use for LoRa is sensor telemetry. Anything with low data speeds and are impractical to cover with a wired or Wi-Fi connections. Perfect for Ag and remote monitoring. Definitely not just a toy.
jeffhuys•2mo ago
There’s a lot of space between “file transfer” and “toy”.

If power goes out, or the internet, or both, I can still contact my entire family spread all around my city, because I gave them all a node to set up in their attic / on their roof. Additionally, they all got a t-deck charged and ready to go.

When shit hits the fan, at least we can find each other.

theshrike79•2mo ago
LoRa is optimised for low power usage and range. Not for moving 1TB 4k videos over the air.

So if you want to move your home videos from one place to another, or if you want to have a wireless security camera with 1080p streamed video, it's the wrong choice.

But if you want to have a battery powered motion detector + environment sensor in an off grid shed 1km that way, LoRa is perfect for that.

For example: I have a Meshtastic device in my car with a small 18650 battery + plugged in to the car's USB that charges it when it's turned on. It reports the car's location and internal temperature to a Meshtastic channel. It also works as a router so if I'm inside a store with my T1000-E, it can't reach the local relay, BUT it can reach my car, which in turn can reach the relay, which again is in range of my home node - which is connected to Home Assistant.

Yes, I could just send an IM, but where's the fun in that? =)

Calwestjobs•2mo ago
meshtastic plans to support more radios then only LoRa so worth updating,

so for example you can use esp32 lora node not only for lora low bandwidth comms but also high speed wifi transfers, for example pictures of intruders !

no just joking.

RapidRAW: A non-destructive and GPU-accelerated RAW image editor

https://github.com/CyberTimon/RapidRAW
82•l8rlump•3h ago•16 comments

Where can I see Hokusai's Great Wave today?

https://greatwavetoday.com/
34•colinprince•2h ago•14 comments

Bootstrapping a side project into a profitable seven-figure business

https://projectionlab.com/blog/we-reached-1m-arr-with-zero-funding
410•jonkuipers•1d ago•88 comments

Breaking Git with a carriage return and cloning RCE

https://dgl.cx/2025/07/git-clone-submodule-cve-2025-48384
296•dgl•12h ago•101 comments

Phrase origin: Why do we "call" functions?

https://quuxplusone.github.io/blog/2025/04/04/etymology-of-call/
52•todsacerdoti•1h ago•32 comments

Frame of preference A history of Mac settings, 1984–2004

https://aresluna.org/frame-of-preference/
66•K7PJP•5h ago•13 comments

Supabase MCP can leak your entire SQL database

https://www.generalanalysis.com/blog/supabase-mcp-blog
659•rexpository•12h ago•331 comments

I'm Building LLM for Satellite Data EarthGPT.app

https://www.earthgpt.app/
6•sabman•1d ago•1 comments

Smollm3: Smol, multilingual, long-context reasoner LLM

https://huggingface.co/blog/smollm3
268•kashifr•13h ago•50 comments

Bulgaria to join euro area on 1 January 2026

https://www.ecb.europa.eu//press/pr/date/2025/html/ecb.pr250708~b9676a9fa8.en.html
175•toomuchtodo•5h ago•97 comments

Surfing on a Matchbox (1999)

http://news.bbc.co.uk/2/hi/science/nature/276762.stm
12•TMWNN•2d ago•3 comments

Radium Music Editor

http://users.notam02.no/~kjetism/radium/
181•ofalkaed•12h ago•35 comments

Xenharmlib: A music theory library that supports non-western harmonic systems

https://xenharmlib.readthedocs.io/en/latest/
58•retooth•7h ago•4 comments

Brut: A New Web Framework for Ruby

https://naildrivin5.com/blog/2025/07/08/brut-a-new-web-framework-for-ruby.html
154•onnnon•12h ago•52 comments

Swahili on the Road

https://www.historytoday.com/archive/behind-times/swahili-road
16•Thevet•5h ago•2 comments

Libpostal: C library for parsing/normalizing street addresses around the world

https://github.com/openvenues/libpostal
22•nateb2022•4h ago•5 comments

Dynamical origin of Theia, the last giant impactor on Earth

https://arxiv.org/abs/2507.01826
80•bikenaga•11h ago•27 comments

US court strikes down 'click-to-cancel' rule designed to make unsubscribing easy

https://www.theguardian.com/us-news/2025/jul/08/court-click-to-cancel-ruling
210•andsoitis•4h ago•98 comments

Show HN: OffChess – Offline chess puzzles app

https://offchess.com
309•avadhesh18•21h ago•138 comments

Taking over 60k spyware user accounts with SQL injection

https://ericdaigle.ca/posts/taking-over-60k-spyware-user-accounts/
184•mtlynch•5d ago•57 comments

Rules of good writing (2007)

https://dilbertblog.typepad.com/the_dilbert_blog/2007/06/the_day_you_bec.html
78•santiviquez•1d ago•58 comments

Plants monitor the integrity of their barrier by sensing gas diffusion

https://www.nature.com/articles/s41586-025-09223-4
66•Bluestein•3d ago•31 comments

New Horizons images enable first test of interstellar navigation

https://www.newscientist.com/article/2486823-new-horizons-images-enable-first-test-of-interstellar-navigation/
31•jnord•2d ago•2 comments

Can an email go 500 miles in 2025?

https://flak.tedunangst.com/post/can-an-email-go-500-miles-in-2025
285•zdw•4d ago•105 comments

GlobalFoundries to Acquire MIPS

https://mips.com/press-releases/gf-mips/
196•mshockwave•13h ago•112 comments

At the frontier between two lives–the evolutionary origins of pregnancy

https://phys.org/news/2025-07-frontier-evolutionary-pregnancy.html
10•wglb•2d ago•1 comments

Choosing a Database Schema for Polymorphic Data (2024)

https://www.dolthub.com/blog/2024-06-25-polymorphic-associations/
22•gm678•5h ago•5 comments

Ceramic: A cross-platform and open-source 2D framework in Haxe

https://ceramic-engine.com/
73•-yukari•3d ago•10 comments

Show HN: A rain Pomodoro with brown noise, ASMR, and Middle Eastern music

https://forgetoolz.com/rain-pomodoro
74•ShadowUnknown•12h ago•34 comments

Blind to Disruption – The CEOs Who Missed the Future

https://steveblank.com/2025/07/08/blind-to-disruption-the-ceos-who-missed-the-future/
107•ArmageddonIt•16h ago•127 comments