摘要: 计算公式: d = 10^((abs(RSSI) - A) / (10 * n)) 其中: d - 计算所得距离 RSSI - 接收信号强度(负值) A - 发射端和接收端相隔1米时的信号强度 n - 环境衰减因子 计算公式的代码实现 传入RSSI值,返回距离(单位:米)。其中,A参数赋了59,n赋 阅读全文
posted @ 2016-05-30 23:23 H_bolin 阅读(11156) 评论(0) 推荐(0) 编辑
摘要: 原文:http://www.cnblogs.com/lele/articles/2832885.html 为什么无线信号(RSSI)是负值 答:其实归根到底为什么接收的无线信号是负值,这样子是不是容易理解多了。因为无线信号多为mW级别,所以对它进行了极化,转化为dBm而已,不表示信号是负的。1mW就 阅读全文
posted @ 2016-05-30 22:31 H_bolin 阅读(1749) 评论(0) 推荐(0) 编辑
摘要: http://www.open-open.com/lib/view/open1390879771695.html 这篇文章将会详细解析BluetoothAdapter的详细api, 包括隐藏方法, 每个常量含义. 一 BluetoothAdapter简介 1.继承关系 该类仅继承了Object类; 阅读全文
posted @ 2016-05-30 16:08 H_bolin 阅读(704) 评论(0) 推荐(0) 编辑
摘要: Managing a Connection When you have successfully connected two (or more) devices, each one will have a connected BluetoothSocket. This is where the fu 阅读全文
posted @ 2016-05-30 13:21 H_bolin 阅读(685) 评论(0) 推荐(0) 编辑
摘要: 连接设备 In order to create a connection between your application on two devices, you must implement both the server-side and client-side mechanisms, beca 阅读全文
posted @ 2016-05-30 11:40 H_bolin 阅读(815) 评论(0) 推荐(0) 编辑