xg590 / SX1276

MicroPython Library for SX1276 (A Long Range Radio Chip from Semtech)
Apache License 2.0
34 stars 8 forks source link

RSSI and SNR values #14

Closed atonughosh closed 1 year ago

atonughosh commented 1 year ago

Is it possible to display the RSSI and SNR values?

xg590 commented 1 year ago

the sample code has shown how to get RSSI and SNR values. You override the wanted irq handlers like "brd_packet_handler". See the 23th line of sender.py https://github.com/xg590/SX1276/blob/44cc5a7bb7d42052cdb2de598f1aa790cf744a91/sender/sender.py#L23

atonughosh commented 1 year ago

Thank you