Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9230305
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T05:47:35+00:00 2026-06-18T05:47:35+00:00

I have two iphone deveices connected by bluetooth. Is it possible to get signal

  • 0

I have two iphone deveices connected by bluetooth. Is it possible to get signal strength between those deveices? if possible,How?
Thanks,
K.D

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-18T05:47:37+00:00Added an answer on June 18, 2026 at 5:47 am

    Take a look on Apple Sample Project for Transferring Data from One device to another via Bluetooth. BTLE Apple Sample Code

    You can find out the signal strength with the value of RSSI (Received signal strength indication)

    In sample code you will get RSSI value when data is received. Check the following method in BTLECentralViewController.m in Project:

    - (void)centralManager:(CBCentralManager *)central didDiscoverPeripheral:(CBPeripheral *)peripheral advertisementData:(NSDictionary *)advertisementData RSSI:(NSNumber *)RSSI
    {
        // Reject any where the value is above reasonable range
        if (RSSI.integerValue > -15) {
            return;
        }
    
        // Reject if the signal strength is too low to be close enough (Close is around -22dB)
        if (RSSI.integerValue < -35) {
            return;
        }
    
        NSLog(@"Discovered %@ at %@", peripheral.name, RSSI);
    
        // Ok, it's in range - have we already seen it?
        if (self.discoveredPeripheral != peripheral) {
    
            // Save a local copy of the peripheral, so CoreBluetooth doesn't get rid of it
            self.discoveredPeripheral = peripheral;
    
            // And connect
            NSLog(@"Connecting to peripheral %@", peripheral);
            [self.centralManager connectPeripheral:peripheral options:nil];
        }
    }
    

    Each time when u received data from advertising by another device. You will receive a RSSI value from this u can find strength and Range of device.

    Also take a look on RSSI Details on Wiki

    I hope this will helps u.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have been looking into communication methods between two iPhone devices and as I
Let's say I have two iPhone apps with shared core functionality. The apps isn't
Suppose I have two fingers touching iPhone's screen but just one is moving. TouchesMoved
I actually have two questions regarding exception/error handling in the iPhone app that I
I have two apps, both of which force the user to use the iPhone
I have two questions. (First) I'm trying to make it where whenever the iPhone
In my iPhone app, I have two plist files to store Themes. One is
In my iPhone app, I have two UIViewcontroler class firstView and secondView. From the
I'm trying a multithreaded Core Data implementation on iPhone SDK 3.1.3. I have two
I am very new to iPhone. I have developed two version of an application

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.