I have two iphone deveices connected by bluetooth. Is it possible to get signal strength between those deveices? if possible,How?
Thanks,
K.D
I have two iphone deveices connected by bluetooth. Is it possible to get signal
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
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.
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:
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.