Add rssi() function

This commit is contained in:
Manuel Bl
2020-08-01 18:30:47 +02:00
parent 9489f34542
commit fdacae73f8
3 changed files with 16 additions and 0 deletions

View File

@ -320,6 +320,11 @@ TTNRxTxWindow TheThingsNetwork::rxTxWindow()
return currentWindow;
}
int TheThingsNetwork::rssi()
{
return LMIC.rssi;
}
// --- Callbacks ---