• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Ron McLeod
  • Tim Cooke
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • Junilu Lacar
  • Rob Spoor
  • Jeanne Boyarsky
Saloon Keepers:
  • Stephan van Hulst
  • Carey Brown
  • Tim Holloway
  • Piet Souris
Bartenders:

BlueTooth Low Energy Advertise

 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
As a peripheral device (android), i am sending out an advertisement. I am attempting to retrieve an RSSI value from a central device that gets connects to the peripheral. I was advised to use readRemoteRssi() and read the value from its callback onReadRemoteRssi.


   private class BleCallBack extends BluetoothGattCallback {
   @Override
   public void onConnectionStateChange(BluetoothGatt gatt, int status,
                                       int newState) {

      if (newState == BluetoothProfile.STATE_CONNECTED) {

           mBluetoothGatt.readRemoteRssi();
       }
   }

   public void onReadRemoteRssi(BluetoothGatt gatt, int rssi, int status) {
       if (status == BluetoothGatt.GATT_SUCCESS) {
           Log.d(TAG, String.format("BluetoothGatt ReadRssi[%d]", rssi));

       }

   }
};

However i am still unable to read the rssi value even after successful connection.
 
I have a knack for fixing things like this ... um ... sorry ... here is a consilitory tiny ad:
The Low Tech Laboratory Movie Kickstarter is LIVE NOW!
https://www.kickstarter.com/projects/paulwheaton/low-tech
reply
    Bookmark Topic Watch Topic
  • New Topic