I’m using the ESP32 BLE examples and they work fine as they are, however I do need the indivudualm values, not the stream, to calculate distance and except individual UUID’s, this works fine for, RSSI, TXPower, would it be possible to get examples of each individual value, that would allow for making more than just a scanner!
Serial.print(" RSSI: "); int RSSI = (advertisedDevice.getRSSI()); Serial.print(RSSI); Serial.print(" TxPower: "); int TXPower = (advertisedDevice.getTXPower()); Serial.println(TXPower);
Thanks in advance,
Erik