Now, I've got it.
The problem was:
Int iRssi = (rf95.lastRssi(), DEC);
It should have been:
int16_t iRssi = rf95.lastRssi();
Now the value of RSSI are correct. Thanx for the hints!
Now, I've got it.
The problem was:
Int iRssi = (rf95.lastRssi(), DEC);
It should have been:
int16_t iRssi = rf95.lastRssi();
Now the value of RSSI are correct. Thanx for the hints!