Hi, is it possible to get the RSSI Value for discovered devices? I use the MasterEmulator.dll for C# and the nRF2739.
Hi, is it possible to get the RSSI Value for discovered devices? I use the MasterEmulator.dll for C# and the nRF2739.
Hi Nordic,
I'm using 2.1.7.8226 and notice that it has RSSI supported now. However I tried capture the BtDevice in DeviceDiscovered event handler, but seems it told me that it has no RSSI key inside. How can I get the RSSI of discovered devices? Any sample code for me to follow?
Thanks!
This would have been much better off as a separate question, but I just tested this, and didn't have any problems with it. When in the DeviceDiscovered callback, you can access the RSSI like this: BtDevice device = arguments.Value; AddToLog(string.Format("RSSI: {0}", device.DeviceInfo[DeviceInfoType.Rssi]));
This would have been much better off as a separate question, but I just tested this, and didn't have any problems with it. When in the DeviceDiscovered callback, you can access the RSSI like this: BtDevice device = arguments.Value; AddToLog(string.Format("RSSI: {0}", device.DeviceInfo[DeviceInfoType.Rssi]));