farabiahmed

Results 3 comments of farabiahmed

I am having similar issue. I created my own driver through openvr_driver.h. Now, I need to know total number of controller devices in the system. Which can be easly done...

You can get RSSI by modifying BLE_scan example like below: ``` class MyAdvertisedDeviceCallbacks: public BLEAdvertisedDeviceCallbacks { void onResult(BLEAdvertisedDevice advertisedDevice) { Serial.printf("Advertised Device: %s", advertisedDevice.toString().c_str()); if (advertisedDevice.haveRSSI()){ Serial.printf("Rssi: %d \n", (int)advertisedDevice.getRSSI());...

Please share how you addressed this with the community as well for the sake of completeness.