chbla
Hi there,
I just wanted to ask if anyone maybe used LoRa(Wan) RF modules with Nerves already?
I have a couple of usecases where it would be nice, but don’t have a clue how this would work.
I assume via GPIOs/serial communication?
Did anyone connect other RF modules or sensors like that?
Thanks,
Christoph
Trending in Questions
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
New
Hi everyone,
I am toying with the idea of building a “match maker” for giving personal help to people that wants to start coding.
I sta...
New
Hello,
I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
New
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
New
I recently noticed that Elixir’s Logger defaults its primary log level to :debug when no :logger, :level application configuration is pre...
New
apply_graft/2 doesn’t rewrite an add_many sub-workflow’s deps on an add step. Grafted jobs cancel with “upstream job was deleted”
Version...
New
Other Trending Topics
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Hi everyone!
The first release candidate for the Expert language server project is now available!
We’ve published a press release detai...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixirconf-us
- #ai
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #elixirconf-eu
- #metaprogramming
- #hex










Most Liked- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
simon
Not yet. I’m waiting for some Kickstarter funded LoRa modules to arrive (hopefully in the next few weeks) and I will be playing with them using Python to start with but would love to eventually develop a Nerves system with them. However for things like this I think I’m going to be in the hands of more experienced hardware-aware developers to create libraries for me.
brunosantanaa
Hi all,
I started a module for LoRa radios that use SPI. If anyone is interested in helping or giving suggestions, this project is on Github, in the link below:
chbla
Same here - we are already using LoRa modules with arduinos and RPis, but I’m not an expert on low level programming.
It would be a nice combination, although probably not high in priority for the nerves community (e.g. OTA updates are not easily doable, low power is not a priority when using RPis, etc).
We have the use case that we need to integrate various devices over ethernet, process a lot of data, and send aggregations over a non-internet (LoRa) connection back.
Last Post!
outlog
@brunosantanaa finally got all the needed HW.. so will give it a go soon..
ended up going for the same module as you have, as to not complicate things
eg:
2x RFM95(w) for europe 868Mhz (~9 usd on ebay)
this breakout board/hat
https://www.tindie.com/products/qqqlab/rfm69-radio-hat-for-raspberry-pi/
fyi my board/hat came with ufl solder pads for connecting external antennas, which is very nice..
I also have a gateway The Things Indoor Gateway | The Things Network since there wasn’t good/consistent coverage at my place - you can check https://ttnmapper.org for gateways close by..
soon-ish I’ll get the radios ping-ponging on simple lora..
then attempt to get lorawan/ttn working building upon your wan branch GitHub - brunosantanaa/Elixir-LoRa at wan · GitHub - first a simple “abp” connect/send, then work from there (receive/otaa etc)..
I may start out using https://github.com/ivajloip/rust-lorawan/tree/master/encoding via rustler for encoding/decoding packages if needed.. just to get something working asap..