Good to know! A full day is more than sufficient for my cases but good to know I can stretch it if need be :)
Iced Raktajino
I’m beautiful and tough like a diamond…or beef jerky in a ball gown.
- 3 Posts
- 28 Comments
Iced Raktajino@startrek.websiteOPto
Meshtastic@mander.xyz•PSA - Don't charge your Heltec V3's from a quick charge capable USB charger [Heltec Horror Story]
0·3 days agoI did, and it doesn’t look puffy thankfully. I’ve got 4 more in the same case and will check on them soon. 3 of those 4 aren’t used often, though.
Iced Raktajino@startrek.websiteOPto
Meshtastic@mander.xyz•PSA - Don't charge your Heltec V3's from a quick charge capable USB charger [Heltec Horror Story]
0·4 days agoExcellent. I’m excited. It should be delivered tomorrow.
Question: Is the case able to be opened at all? Like, if I wanted to pull out the i2c and a power + ground to a second set of pogo pins? Was just thinking that the only thing I’d miss is the ability to send canned messages from the device. The 2.7 firmware lets you do that now with the one-button navigation. Thinking something like a 3D printed sleeve that has a little i2c OLED screen and maybe an extension of the user button
Iced Raktajino@startrek.websiteto
Meshtastic@mander.xyz•How to Set Up Your Heltec LoRa V3 Meshtastic Node – rd/lr
0·4 days agoIf you’re provisioning several or just like to have a good baseline for setting up future nodes, I like to use the Python client and make a provisioning script. I feel like it’s way uglier than it should be, but I’ve found that even though the docs say you can specify multiple config options in one call, they don’t all apply. So I have to do them in stages and wait for it to reboot between executing each config.
This is my baseline provisioning script for reference. I like to have a private default channel but then also set the radio frequency manually to the “default” LongFast of 906.875 MHz and create the LongFast channel as a secondary so I can communicate with people using the default config (which is very common). This also lets me relay for them (and vice versa) while not sharing my location and such with the public mesh.
#!/bin/bash # Optionally set the device name and short name. If not provided, the user info step is skipped DEVICE_NAME=$1 DEVICE_SHORT_NAME=$2 # Admin key is optional but I set it on all of my managed nodes. If not using that, comment out the line further down where this is referenced ADMIN_KEY="{PUBLIC_KEY_OF_ADMIN_NODE}" # Use a private default channel. PRIMARY_CHANNEL_KEY="{BASE64_PRIVATE_KEY_FOR_PRIMARY_CHANNEL}" PRIMARY_CHANNEL_NAME="{PRIMARY_CHANNEL_NAME}" function wait_for_reboot { echo "Press <ENTER> once device has rebooted" read a } echo "Setting LoRa Region..." meshtastic --set lora.region US wait_for_reboot # If device name and short name are supplied, set those if [ -n "$DEVICE_NAME" ] && [ -n $DEVICE_SHORT_NAME ] then echo "Setting Device Name..." meshtastic \ --set-owner "$DEVICE_NAME" \ --set-owner-short "$DEVICE_SHORT_NAME" wait_for_reboot fi # Set most options meshtastic --set display.screen_on_secs 120 \ --set display.units IMPERIAL \ --set device.led_heartbeat_disabled false \ --set telemetry.device_telemetry_enabled true \ --set lora.use_preset true \ --set lora.modem_preset LONG_FAST \ --set security.admin_key base64:$ADMIN_KEY \ --set lora.override_frequency 906.875 wait_for_reboot meshtastic --set-canned-message "Affirmative|Negative|Unknown|Acknowledged|Require Assistance|Check-In Good|Check-In Bad|Status?" wait_for_reboot meshtastic \ --ch-index 0 --ch-set psk base64:$PRIMARY_CHANNEL_KEY --ch-set name "$PRIMARY_CHANNEL_NAME" \ --ch-index 1 --ch-set psk base64:AQ== --ch-set name "LongFast" wait_for_reboot meshtastic --set-time
Iced Raktajino@startrek.websiteOPto
Meshtastic@mander.xyz•PSA - Don't charge your Heltec V3's from a quick charge capable USB charger [Heltec Horror Story]
0·4 days agoOut of curiosity, what case are you using?
Most of my nodes are using the HT Pocket case. My EDC one was the one without the external antenna, but the bulk of my other nodes use the same case with the external antenna cutout.
The fit is pretty tight in that model, but I love how compact it is. It also has a belt clip model I printed which is nice for strapping some of the antenna-clad units to trees when we go camping.
Iced Raktajino@startrek.websiteto
Meshtastic@mander.xyz•Best LoRa Meshtastic Devices Of 2025
0·4 days agoKindof a modern take on a CB radio from ye olden days. Mostly just keep a node with me when I’m out and about just to see who I can pick up and from what distances.
Iced Raktajino@startrek.websiteto
Meshtastic@mander.xyz•Best LoRa Meshtastic Devices Of 2025
0·4 days agoI mentioned it to you in another post, but I just bought the Seeed T1000e today. I’ve had my eye on it for a while now and have heard lots of good things about it. Will be excited when it arrives Sunday. It’ll be replacing my Heltec V3 (RIP) everyday carry that decided to self destruct last night.
Old EDC Node

Soon to have T1000e (stock photo)

Iced Raktajino@startrek.websiteOPto
Meshtastic@mander.xyz•In the event of enshittification, are there any alternative apps for Meshtastic / probabilities of a fork happening?
0·5 days agoOh, right. Like I said in another comment, I was mostly just knee-jerk reacting from what happened with a different project. The catch there was that they didn’t just change the license, they completely pulled down the repos for the open source version.
Meshtastic is a bit bigger than that project, so there are very likely active forks out and about if only for the purpose of contributors submitting PRs. In the case of the other project, there seemingly are none.
Iced Raktajino@startrek.websiteOPto
Meshtastic@mander.xyz•PSA - Don't charge your Heltec V3's from a quick charge capable USB charger [Heltec Horror Story]
0·5 days agoProbably, yeah. I haven’t had hands on with the V4 yet and forgot it was out. I’ll update the title. Thanks.
Iced Raktajino@startrek.websiteOPto
Meshtastic@mander.xyz•PSA - Don't charge your Heltec V3's from a quick charge capable USB charger [Heltec Horror Story]
0·5 days agoNice. Some reviews complain about the range/sensitivity, but it’s hard to gauge what their expectations / comparisons may be.
My (now former) EDC is a basic Heltec V3 with its little “default” antenna in the HT Pocket case. I added a keychain lanyard and it lives with the key fob for my car. The range on it isn’t the best because of how the antenna is inside the case and up against the board (which makes it semi-directional) but it was good enough. As long as it’s as good as that, I’m content.
Iced Raktajino@startrek.websiteOPto
Meshtastic@mander.xyz•PSA - Don't charge your Heltec V3's from a quick charge capable USB charger [Heltec Horror Story]
0·5 days agoStarter kit: https://store.rakwireless.com/products/wisblock-meshtastic-starter-kit
They also have a new 1W LoRa kit I’m wanting to get to replace my client_base node. It uses the same carrier board.
The LilyGo T-Deck is what I’ve been looking at for a dedicated node, but I can’t justify the expense right now. Plus it’d be large for an EDC.
There’s a i2c keyboard (CardKB i think) that Meshtastic firmware supports, but I can never find them in stock. You’d just need to connect it to the i2c pins on your node.
I’m also genuinely looking at the SenseCAP Card Tracker T1000-E prebuilt unit for my new everyday carry node. It’s super thin, waterproof, nRF-based for good battery life, and already has a GPS receiver installed. Only downside is you need to use a special cable to charge/flash it.
Edit: I just bought the T1000-E. I had one day left on my Prime trial and decided I’d pined over it long enough. Normally I’d avoid an impulse buy like that but given what this post is about, I’m in need of a new everyday carry.
Iced Raktajino@startrek.websiteOPto
Meshtastic@mander.xyz•PSA - Don't charge your Heltec V3's from a quick charge capable USB charger [Heltec Horror Story]
0·5 days agoI’m planning to switch to the Wisblocks. The only thing I’ll lose is wifi, but I’m not using that now except on my client base node since it’s one of the ones with a failed UART chip.
The nRF-based ones also seem to have much better battery life, and the Wisblocks can be a lot more compact if you want to add sensors or GPS, etc.
Iced Raktajino@startrek.websiteOPto
Meshtastic@mander.xyz•PSA - Don't charge your Heltec V3's from a quick charge capable USB charger [Heltec Horror Story]
0·5 days agoCan confirm the similar battery life. Just the Heltec V3, connected over BT, with a 2000 mAh battery lasts about 14 hours. If it’s not connected to my phone and the BT shuts off, it’ll last well over a day (maybe more). I was going to add a GPS module to it but didn’t want to make the case any larger to accommodate a 3000 mAh battery.
The ESP32’s radio is just power hungry it seems. I’ve noticed there’s nothing “low energy” about it’s BLE and it seems to use the same amount of power as an active wifi connection.
And any time the power goes out for more than 5 mins the device resets its name
I’ve only had that happen once, but I don’t recall the circumstances. My everyday carry node is always powered, but I have some nodes that just sit on a shelf. What I have noticed is that the soft shutdown is only temporary and after 3-5 days they’ll turn back on until they drain the battery. I think only one of them has had issues keeping its device name.
I just updated all of them to the latest 2.7 firmware and am hoping that addressed the soft shutdown timeout. Which reminds me, I need to check in on them since that was about a week ago when I updated them.
Iced Raktajino@startrek.websiteOPto
Meshtastic@mander.xyz•In the event of enshittification, are there any alternative apps for Meshtastic / probabilities of a fork happening?
0·6 days agoRight, I’m mostly knee-jerking from what happened with the PicoKey project. Had been active with it and the dev pulls a 180 and rips out every way to configure it except the paid tool.
The configuration tool (pico-commissioner) was also open source but the dev nuked the repo for it. A search for forks has turned up zilch.
Refs:
Iced Raktajino@startrek.websiteOPto
Meshtastic@mander.xyz•In the event of enshittification, are there any alternative apps for Meshtastic / probabilities of a fork happening?
0·6 days agoI would love to get my hands on some HaLow gear but it’s either unobtanium or crazy expensive compared to LoRa.
There’s some Heltec (I think?) chips I saw recently but I haven’t dug too far into libraries or driver support.
Iced Raktajino@startrek.websiteOPto
Meshtastic@mander.xyz•In the event of enshittification, are there any alternative apps for Meshtastic / probabilities of a fork happening?
0·6 days agoYeah, I haven’t messed with Meshcore yet but I have been playing with Reticulum and the RNodes. I think it’s the same guy behind both, if I’m not mistaken (Edit: I am mistaken, though the dev seems to work on both).
I guess I’m just coming at it from the “firmware is free, app is paid/subscription” angle. Like, I could see the basic Meshtastic firmware remaining free but the one with the fancy UI (for things like the T-Deck) being paid and the app going paid/subscription.
I would hope the target audience for the project would discourage that kind of thing, but like you said, “these days” are what they are.
Iced Raktajino@startrek.websiteto
Meshtastic@mander.xyz•Seeking advice for a "repeater" node
0·7 days agoI just stumbled across this. Probably available from other vendors, but for reference: https://www.amazon.com/dp/B0F1MWPF7G/134-3819393-6559008
Looks like it’s got everything you’re looking for and is pretty much a turn-key solution.
Iced Raktajino@startrek.websiteto
Meshtastic@mander.xyz•Super affordable, £9.60 (10 now), Meshtastic, Xiao ESP32 s3 with Wio SX1262
0·8 days agoLove how tiny that is, but I’m not a fan of the pin layout on those little Xiao modules. The connection pads on the bottom, including the battery connection, are a major pain to try to solder to. If I ever get around to playing with the remaining two I have, I’m gonna try using pogo pins or something instead of trying to solder onto them
Iced Raktajino@startrek.websiteto
Meshtastic@mander.xyz•Question: can I put 2 antennas on one device?
0·8 days agoI don’t think that will work. At best, it would split the signal power and neither antenna would perform well. That’s not even getting into the RF wizardry which I’m not equipped to fully explain (or understand lol).
The “proper” solution would be to have two Meshtastic units. One in a high place for long range and configured with the “client base” role and the other one(s) with regular antennas optionally in the “client mute” role. The reason for that is they’d likely be able to “hear” the base station one just fine and relay through it and wouldn’t necessarily need to rebroadcast locally. If they do, then they can be in regular “client” role.
Since I have multiple units inside, I keep mine in “client mute” when I’m home so they go through my “attic node” and switch to “client” when I’m out and about. The 2.7 firmware makes this easy to switch directly on the device without having to mess with the app settings.
https://meshtastic.org/blog/demystifying-router-late/
Now if you’re talking a highly directional Yagi for the high gain/high place antenna, then I believe the general guidance still stands. The newer firmware has some zero hop configuration where you can “pair” devices (via favoriting) and while they still hop the signal, it doesn’t decrement the hop count.
https://meshtastic.org/blog/zero-cost-hops-favorite-routers/
I’ll try that.
In your uses, is the battery life measured while being connected over Bluetooth or just how long the device runs on its own? This is the first day I’m running it through its paces and after 3 hours, it’s down to 83% / 3.98V. That’s with GPS, RX boosted gain enabled, and connected to my phone via BT.