Hello all
I just setup for the first time a Raspberry Zero with RFM9x radio module with LCD.
I installed TinyLoRa from Adafruit
https://learn.adafruit.com/lora-and-lorawan-radio-for-raspberry-pi/usage
It’s work!
My goal is very simple, each time a send a message to the Gateway, I would like to know the RSSI. In that way, when I start moving away from my gateway, I could the RSSI until I go out of the Gateway rang. And then I can know wehre my nodes can be placed.
I have a few expertise with Python3 but I get, the question is how to get this value from the TTN consol
{
“time”: “2019-05-31T06:50:17.097425632Z”,
“frequency”: 868.1,
“modulation”: “LORA”,
“data_rate”: “SF7BW125”,
“coding_rate”: “4/5”,
“gateways”: [
{
“gtw_id”: “eui-b827ebfffe460000”,
“timestamp”: 2143411251,
“time”: “2019-05-31T06:50:17.059694Z”,
“channel”: 0,
“rssi”: -57,
“snr”: 10,
“rf_chain”: 1,
“latitude”: 46.01448,
“longitude”: 6.20621,
“altitude”: 400
}
]
}
and how to have this
"gtw_id": "eui-b827ebfffe460000", "channel": 0, "rssi": -57, "snr": 10, "rf_chain": 1, "latitude": 46.01448, "longitude": 6.20621,
display on my LCD, or at least the RSSI?
Some of you have a solution with Python3?
That would be great!
Thank a lot