Packets getting lost on the TTN Console (or LoRa Gateway)

Hi,
We ( @AkashCastelino ) are doing a Smart City IoT Project where we aim to count cars passing by on a bi-lane street. This is our hardware setup powered by an Anker 20,100 mAh PowerBank:

  • Arduino Mega
  • DS3231 RTC
  • SHARP IR GP2Y0A710K0F Sensor
  • 16 x 02 - I2C LCD Display
  • Dragino LoRa Shield v1.4
  • Dragino LG-01 LoRa Gateway
    We tested our hardware setup on the Laptop Serial monitor and it is able to count vehicles decently. We also setup our TTN packet exporter sketch and this is where we are currently encountering problems of 2 packets getting lost. We ran this TTN_node test sketch where we export packets every 30 seconds. In our TTN Device Settings we have disabled Frame Counter Checks as we are currently testing the assembly and not deployed it in the field. You can see my sketch in the link below and in the video below you can see the packet count and the timestamp of every packet sent on the LCD Display.
    Sketch: https://create.arduino.cc/editor/diliprajkumar/7b5e8655-66bd-4e2d-b33d-f485016f1e83/preview
    Video: https://www.dropbox.com/s/l1c749zxh0o4vh1/TTN_LCDCounter.mp4?dl=0
    However in both the TTN Application Date Console and also in the TTN Swagger API we see 2/4 packets getting lost, as you can see in the screenshot below.
    30secinterval
    Even setting the TX_INTERVAL = 60 in our sketch (i.e sending packet ~ once every min) is still resulting in 2 packet loss, as you can see in the screenshot below:
    1min Intervals
    We looked at the limitations of the LoRaWAN but we saw in one video in your youtube channel that it is possible to send data to the TTN every 5 seconds, however for us, we only receive packets on the TTN once every ~ 2 minutes. Obviously this is a problem for us because sometimes cars move in front of our sensor every 10 seconds once during peak traffic hours and if we want to send a timestamp of that event it is not possible and that packet may get lost. Can someone kindly tell us whether the problem lies in:
  • TTN BackEnd
  • TTN Console or Application or Device Settings
  • Dragino LG-01 LoRA Gateway
  • or any other hardware/firmware issue?
    If the problem is irresolvable either from a hardware or software point of you, Can someone also kindly give us an expert opinion on what is the best approach for our project to send data to the TTN?
    Instead of sending epoch timestamps of vehicle traffic as and when it happens, Should we perhaps send vehicle count data every 60 or 300 seconds, reset the vehicle count and then send the next packet ?

Best Regards,
Dilip

the reason is probably that the dragino is in fact a single channel gateway.
your node rotates frequencies so your single channel misses a few every time.
or the node is transmitting to fast

2 Likes

Hi @BoRRoZ ,
Thank you for your quick reply! So do you suggest if we use a multi-channel gateway we can actually send vehicle count data as and when it happens? Or should we send (prestored) count-data once every 60 or 300 secs?

Best,
Dilip

Its going to miss more than a few, single channel gateways need a health warning :smile:

live, ‘as it happends’ is probably not possible.
I don’t know how fast the cars are moving and how many cars passes your sensor every minute.

so depending on that answer its better to collect some data (count cars) and transmit that number with a certain interval, that way you always stay within the fair access policy
see Limitations: data rate, packet size, 30 seconds uplink and 10 messages downlink per day Fair Access Policy

A post was merged into an existing topic: Arduino Pro Mini + Lmic+OTAA with Multi Channel Gateway