I just built and tested a single channel LoRaWAN gateway which is connected to TTN as per the instructions of thing4U/esp-1ch-gateway with a single channel node both based on TTGO-ESP32Lora and eventually configured both on www.thethingsnetwork.org. Everything works nicely but I do not understand why despite the node sending data at pace of 2 minutes, the gateway receives just one packet out of three. So if I trasnmit: packets 0,3,6,9 etc. the data at ttn is updated every 6 minutes instead of 2.
Single Channel LoRaWAN systematically accepts just one packet out of 3 sent by node
357 Views Asked by vinloren At
1
There are 1 best solutions below
Related Questions in LORAWAN
- Receiving or transmitting other protocols by LoRaWAN
- ASCII of integer to integer in Arduino
- The Things Stack | LoRaWAN AppEUI
- LoRa ESP32 V2 board ("Core 1 panic'ed")
- What is the tenant ID for The Thing Network au1 region?
- How can I capture packets on devices with OneShotSenderHelper (signetlabdei / LoRaWAN module) application installed in ns3?
- SX126x Get RX payload size
- Waveshare SX1262 LoRaWAN Hat
- Deployment Issue with ChirpStack and Helium: GRPC Permission Denied Error
- LoRaWAN setup in Algeria
- Single Channel LoRaWAN systematically accepts just one packet out of 3 sent by node
- How to recreate a join accept downlink message in LoRaWAN?
- "ERROR: failed to load fw 1", Raspberry Pi 2 B+ LoRa gateway
- Significance of LoRaWAN classes in developing a LoRa Node with sensors
- LoRaWAN planning - do M gateways seem to suffice for N sensors & 1 [msg/hr]?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
That is correct. LoRaWAN uses the first three channels as main channels for communication. More can be configured for use. These three exist in part because they then can always be used for OTAA.
So if you have a single channel gateway and it is listening to 868.100 MHz and your node sends on 868.300 MHz then your gateway won't hear it because it is listening on the wrong frequency.
There are several solutions:
Frequencies are only meant as an example, these frequencies are applicable to EU and may differ in your own region but the principle still stands.