欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

搭建简易蓝牙定位系统的实现方法

程序员文章站 2023-11-27 09:25:28
本文将简单介绍如何搭建一套蓝牙定位系统,供移动客户端(包括android和ios)定位。 1、准备设备 所需硬件设备: (1)低功率蓝牙定位器若干(如:10个),网上...

本文将简单介绍如何搭建一套蓝牙定位系统,供移动客户端(包括android和ios)定位。

1、准备设备

所需硬件设备:

(1)低功率蓝牙定位器若干(如:10个),网上有卖(单价从几十到几百都有)

(2)android设备一台,系统版本4.2以上(sdk版本大于17)

(3)ios设备一台,支持蓝牙4.0 ble

2、设置蓝牙定位器

移动设备扫描周边低功率蓝牙设备,可以获得蓝牙设备对应的proximity uuid、major、minor等属性信息。而刚采购来的蓝牙设备属性可能都相同,互相区别不开,所以我们需要设置每台设备的属性。

设备厂商都会提供相关手机应用,共用户设置属性信息。给蓝牙设备装上电池,打开手机应用,靠近蓝牙设备就能发现,然后就可以设置其属性值了,其中:

uuid是一个32位的16进制数,表示设备厂商,该字段可以沿用出厂设置

major表示不同区域(比如:某一楼层、某一地区),取值范围0到6万多

minor表示不同的设备,取值范围0到6万多

样例:uuid = e2c56db5-dffb-48d2-b060-d0f5a71096e0, major = 1001, minor = 10001

每台设备设置完属性后准备一个标签,填上属性信息,贴到设备上,方便以后部署。

3、部署蓝牙设备

首先,准备目标场地地图数据,可以是基于经纬度坐标,也可以是简单图片坐标,看具体使用情况。

接下来,将蓝牙设备挨个部署到场地指定位置上,顺便记录每个设备地理坐标或图片坐标。

最后,得到一张表格信息,记录着每台蓝牙设备属性和位置信息。这张表就是整个定位系统的指纹库,为定位算法使用。

uuid major minor lat lon
e2c56db5-dffb-48d2-b060-d0f5a71096e0 1001 10001 39.45678 116.23456
e2c56db5-dffb-48d2-b060-d0f5a71096e0 1001 10002 39.45674 116.23476
... ... ... ... ...

固定蓝牙设备到场地指定位置比较容易,不过记录设备坐标信息可能复杂一点,需要在地图或图片上获得相应位置点。可以开发一个app从而快速准确地记录位置信息,顺便将相关信息录入指纹库(数据库,比如:sqlite)。

部署蓝牙设备还有一个关注点就是部署间隔。低功率蓝牙设备容易受场地、环境影响,比较不稳定,所以根据场地条件每隔几米或十几米部署一台蓝牙设备。间隔太大会影响定位精度,不过太密也是资源浪费,不是越密集定位精度越高。

4、客户端app开发

客户端app主要功能就是扫描周围蓝牙设备,将设备列表信息上传定位服务器,从而获得定位效果,并展现给终端用户。

4.1 android应用开发

工程所需sdk版本大于17。

1. app所需权限(androidmanifest.xml文件)

<uses-permission android:name="android.permission.bluetooth" />
<uses-permission android:name="android.permission.bluetooth_admin" />

2. 创建beacon数据项类

public class ibeaconrecord {
	public string address;	// 设备地址(mac)
	public string uuid;		// proximity uuid
	public int major;		// major
	public int minor;		// minor
	public int rssi;		// 场强
}

其中,address属性可以不要,因为ios设备获取不到该属性!

3. 创建扫描工具类

import java.util.arraylist;
import java.util.hashmap;
import java.util.list;
import java.util.map;

import com.example.vo.ibeaconrecord;

import android.bluetooth.bluetoothadapter;
import android.bluetooth.bluetoothdevice;
import android.bluetooth.bluetoothmanager;
import android.content.context;
import android.os.build;
import android.os.handler;

public class blepositioning {

	private context m_ctx;
	private handler handler;
	
	private bluetoothmanager bluetoothmanager;
	private bluetoothadapter mbluetoothadapter;
	
	// 存储蓝牙扫描结果,key - name_address, value - list<ibeaconrecord>
	private map<string, list<ibeaconrecord>> mapbltscanresult;

	public blepositioning(context ctx) {
		super();
		this.m_ctx = ctx;
		initparam();
	}

	/**
	 * 初始化
	 */
	private void initparam() {
		handler = new handler();

		mapbltscanresult = new hashmap<string, list<ibeaconrecord>>();
		// 设备sdk版本大于17(build.version_codes.jelly_bean_mr1)才支持ble 4.0
		if (build.version.sdk_int >= build.version_codes.jelly_bean_mr1) {
			bluetoothmanager = (bluetoothmanager) this.m_ctx
					.getsystemservice(context.bluetooth_service);
			mbluetoothadapter = bluetoothmanager.getadapter();
		}
	}
	
	/**
	 * 开始扫描蓝牙设备
	 */
	public void startscan()
	{
		mapbltscanresult.clear();
		
		if (mbluetoothadapter != null && mbluetoothadapter.isenabled()) {
			// 5秒后停止扫描,毕竟扫描蓝牙设备比较费电,根据定位及时性自行调整该值
			handler.postdelayed(new runnable() {
				@override
				public void run() {
					mbluetoothadapter.stoplescan(bltscancallback);
				}
			}, 5 * 1000);
			mbluetoothadapter.startlescan(bltscancallback);	// 开始扫描
		}
	}
	
	/**
	 * 请求定位服务,由你们完成,
	 * 如果指纹数据在本地,定位算法就在当前app里完成
	 */
	public void requestserver()
	{
		// todo 
		// 利用mapbltscanresult(蓝牙扫描结果)请求定位服务或本地计算定位
	}
	
	/**
	 * 蓝牙扫描回调,获取扫描获得的蓝牙设备信息
	 */
	private bluetoothadapter.lescancallback bltscancallback = new bluetoothadapter.lescancallback() {
		@override
		public void onlescan(final bluetoothdevice device, int rssi,
				byte[] scanrecord) {
			/**
			 * 参数列表描述
			 * 1.device	- bluetoothdevice类对象,
			 * 		通过该对象可以得到硬件地址(比如"00:11:22:aa:bb:cc")、设备名称等信息
			 * 2.rssi - 蓝牙设备场强值,小于0的int值
			 * 3.scanrecord - 这里内容比较丰富,像uuid、major、minor都在这里
			 */
			ibeaconrecord record = new ibeaconrecord();
			if (fromscandata(scanrecord, record)) {
				string address = device.getaddress();	// 获取mac地址
				string name = device.getname();			// 获取设备名称
				string key = name + "_" + address;

				record.address = address;	// mac地址
				record.rssi = rssi;		// 场强
				if (mapbltscanresult.containskey(key)) {
					mapbltscanresult.get(key).add(record);
				} else {
					arraylist<ibeaconrecord> list = new arraylist<ibeaconrecord>();
					list.add(record);
					mapbltscanresult.put(key, list);
				}
			}
		}
	};
	
	/**
	 * 解析蓝牙信息数据流
	 * 	注:该段代码是从网上看到的,来源不详
	 * @param scandata
	 * @param record
	 * @return
	 */
	private boolean fromscandata(byte[] scandata, ibeaconrecord record) {

		int startbyte = 2;
		boolean patternfound = false;
		while (startbyte <= 5) {
			if (((int) scandata[startbyte + 2] & 0xff) == 0x02
					&& ((int) scandata[startbyte + 3] & 0xff) == 0x15) {
				// yes! this is an ibeacon
				patternfound = true;
				break;
			} else if (((int) scandata[startbyte] & 0xff) == 0x2d
					&& ((int) scandata[startbyte + 1] & 0xff) == 0x24
					&& ((int) scandata[startbyte + 2] & 0xff) == 0xbf
					&& ((int) scandata[startbyte + 3] & 0xff) == 0x16) {

				return false;
			} else if (((int) scandata[startbyte] & 0xff) == 0xad
					&& ((int) scandata[startbyte + 1] & 0xff) == 0x77
					&& ((int) scandata[startbyte + 2] & 0xff) == 0x00
					&& ((int) scandata[startbyte + 3] & 0xff) == 0xc6) {

				return false;
			}
			startbyte++;
		}

		if (patternfound == false) {
			// this is not an ibeacon

			return false;
		}

		// 获得major属性
		record.major = (scandata[startbyte + 20] & 0xff) * 0x100
				+ (scandata[startbyte + 21] & 0xff);
		
		// 获得minor属性
		record.minor = (scandata[startbyte + 22] & 0xff) * 0x100
				+ (scandata[startbyte + 23] & 0xff);
		// record.tx_power = (int) scandata[startbyte + 24]; // this one is
		// signed
		// record.accuracy = calculateaccuracy(record.tx_power, record.rssi);
		// if (record.accuracy < 0) {
		// return false;
		// }
		try {

			byte[] proximityuuidbytes = new byte[16];
			system.arraycopy(scandata, startbyte + 4, proximityuuidbytes, 0, 16);
			string hexstring = bytestohex(proximityuuidbytes);
			stringbuilder sb = new stringbuilder();
			sb.append(hexstring.substring(0, 8));
			sb.append("-");
			sb.append(hexstring.substring(8, 12));
			sb.append("-");
			sb.append(hexstring.substring(12, 16));
			sb.append("-");
			sb.append(hexstring.substring(16, 20));
			sb.append("-");
			sb.append(hexstring.substring(20, 32));
			// beacon.put("proximity_uuid", sb.tostring());
			// 获得uuid属性
			record.uuid = sb.tostring();
		} catch (exception e) {
			e.printstacktrace();
		}

		return true;
	}
	
	private char[] hexarray = { '0', '1', '2', '3', '4', '5', '6', '7', '8',
			'9', 'a', 'b', 'c', 'd', 'e', 'f' };

	private string bytestohex(byte[] bytes) {
		char[] hexchars = new char[bytes.length * 2];
		int v;
		for (int j = 0; j < bytes.length; j++) {
			v = bytes[j] & 0xff;
			hexchars[j * 2] = hexarray[v >>> 4];
			hexchars[j * 2 + 1] = hexarray[v & 0x0f];
		}
		return new string(hexchars);
	}
}

扫描结果放在mapbltscanresult里,该hashmap的key由设备mac地址和名称组成(address_name),value是个arraylist,记录着该蓝牙设备多次扫描得到的信息(ibeaconrecord)序列,请求定位服务或本地计算定位之前,这些序列要进行平均处理(其实只是平均rssi值)。经过rssi值多次平均处理后,一定程度上减小蓝牙设备不稳定因素。

关于请求定位服务,展现定位效果,还有定位算法都不是本文重点!关于蓝牙定位算法也可以参考其他文献资料!

4.2 ios应用开发

ios部分参考了airlocate源码(苹果官方蓝牙样例工程)。

1. 引用基础配置类“apldefaults”(来自airlocate)

apldefaults.h文件

/*
   file: apldefaults.h
 abstract: contains default values for the application.
 
 version: 1.1
 
 copyright (c) 2014 apple inc. all rights reserved.
 
 */


extern nsstring *beaconidentifier;


@interface apldefaults : nsobject

+ (apldefaults *)shareddefaults;

@property (nonatomic, copy, readonly) nsarray *supportedproximityuuids;

@property (nonatomic, copy, readonly) nsuuid *defaultproximityuuid;
@property (nonatomic, copy, readonly) nsnumber *defaultpower;

@end

apldefaults.m文件

/*
   file: apldefaults.m
 abstract: contains default values for the application.
 
 version: 1.1
 
 copyright (c) 2014 apple inc. all rights reserved.
 
 */

#import "apldefaults.h"


nsstring *beaconidentifier = @"com.example.apple-samplecode.airlocate";


@implementation apldefaults

- (id)init
{
  self = [super init];
  if(self)
  {
    // uuidgen should be used to generate uuids.
    _supportedproximityuuids = @[[[nsuuid alloc] initwithuuidstring:@"e2c56db5-dffb-48d2-b060-d0f5a71096e0"],
                   [[nsuuid alloc] initwithuuidstring:@"5a4bcfce-174e-4bac-a814-092e77f6b7e5"],
                   [[nsuuid alloc] initwithuuidstring:@"74278bda-b644-4520-8f0c-720eaf059935"]];
    _defaultpower = @-59;
  }
  
  return self;
}


+ (apldefaults *)shareddefaults
{
  static id shareddefaults = nil;
  static dispatch_once_t oncetoken;
  dispatch_once(&oncetoken, ^{
    shareddefaults = [[self alloc] init];
  });
  
  return shareddefaults;
}


- (nsuuid *)defaultproximityuuid
{
  return _supportedproximityuuids[0];
}


@end

2.  定义变量

  // 存储扫描获得的蓝牙设备信息
  // key - proximityuuid_major_minor
  // value - nsarray (clbeacon)
  nsmutabledictionary *dicbeacons;
  
  cllocationmanager *locationmanager;
  nsmutabledictionary *rangedregions;   // 要扫描的region
  
  nstimer *timerpos; // 定时器,用于控制扫描时间长短

3. 初始化

  dicbeacons = [[nsmutabledictionary alloc] init];
  
  locationmanager = [[cllocationmanager alloc] init];
  locationmanager.delegate = self; // 当前类接收回调,从而获得蓝牙设备信息
  
  // populate the regions we will range once.
  rangedregions = [[nsmutabledictionary alloc] init];
  
  for (nsuuid *uuid in [apldefaults shareddefaults].supportedproximityuuids)
  {
    clbeaconregion *region = [[clbeaconregion alloc] initwithproximityuuid:uuid identifier:[uuid uuidstring]];
    rangedregions[region] = [nsarray array];
  }

4. 开始扫描、停止扫描和请求定位服务

// 开始扫描蓝牙
- (void)startscanning
{
  // 定时3.0秒后请求定位服务,时间间隔自行设置,只要有足够的扫描时间即可
  timerpos = [nstimer scheduledtimerwithtimeinterval:3.0 target:self selector:@selector(startpositioning) userinfo:nil repeats:no];
  
  [dicbeacons removeallobjects];
  // 开始扫描
  for (clbeaconregion *region in rangedregions)
  {
    [locationmanager startrangingbeaconsinregion:region];
  }
}

// 停止扫描蓝牙
- (void)stopscanning
{
  // 停止扫描
  for (clbeaconregion *region in rangedregions)
  {
    [locationmanager stoprangingbeaconsinregion:region];
  }
}

// 请求定位服务
- (void)startpositioning
{
  [self stopscanning];  // 停止扫描
  
  // 以下根据扫描结果dicbeacons来请求定位服务
  //
}

其中,请求定位服务部分每个人都不一样,依赖自身定位服务。

5. 监听回调,解析扫描获得的蓝牙设备信息,存入dicbeacons变量

#pragma mark - location manager delegate
- (void)locationmanager:(cllocationmanager *)manager didrangebeacons:(nsarray *)beacons inregion:(clbeaconregion *)region
{
  /*
   corelocation will call this delegate method at 1 hz with updated range information.
   beacons will be categorized and displayed by proximity. a beacon can belong to multiple
   regions. it will be displayed multiple times if that is the case. if that is not desired,
   use a set instead of an array.
   */
  for (nsnumber *range in @[@(clproximityunknown), @(clproximityimmediate), @(clproximitynear), @(clproximityfar)])
  {
    nsarray *proximitybeacons = [beacons filteredarrayusingpredicate:[nspredicate predicatewithformat:@"proximity = %d", [range intvalue]]];
    
    for (int i = 0; i < [proximitybeacons count]; i++) {
      clbeacon *beacon = [proximitybeacons objectatindex:i];
      // 场强过滤,rssi值要在-90到0之间
      if (beacon.rssi < 0 && beacon.rssi > -90) {
        nsstring *strkey = [nsstring stringwithformat:@"%@_%@_%@",[beacon.proximityuuid uuidstring], beacon.major, beacon.minor];
        if ([dicbeacons objectforkey:strkey]) {
          [[dicbeacons objectforkey:strkey] addobject:beacon];
        } else {
          nsmutablearray *arrbeacons = [[nsmutablearray alloc] init];
          [arrbeacons addobject:beacon];
          [dicbeacons setobject:arrbeacons forkey:strkey];
        }
      }
    }
  }
}

5. 定位服务开发

部署蓝牙设备时组建了最原始的蓝牙指纹库(数据表),利用这张表可以开发一套定位服务。

客户端上传过来的是一组蓝牙设备信息列表,例如:

{
  "ble_arr” =   (
        {
      major = 1001;
      minor = 10006;
      rssi = "-65";
      uuid = " e2c56db5-dffb-48d2-b060-d0f5a71096e0";
    },
        {
      major = 1001;
      minor = 10002;
      rssi = "-72";
      uuid = " e2c56db5-dffb-48d2-b060-d0f5a71096e0";
    },
        {
      major = 1001;
      minor = 10005;
      rssi = "-49";
      uuid = " e2c56db5-dffb-48d2-b060-d0f5a71096e0";
    },
        {
      major = 1001;
      minor = 10008;
      rssi = "-74";
      uuid = " e2c56db5-dffb-48d2-b060-d0f5a71096e0";
    },
        {
      major = 1001;
      minor = 10001;
      rssi = "-65";
      uuid = " e2c56db5-dffb-48d2-b060-d0f5a71096e0";
    },
        {
      major = 1001;
      minor = 10004;
      rssi = "-76";
      uuid = " e2c56db5-dffb-48d2-b060-d0f5a71096e0";
    },
        {
      major = 1001;
      minor = 10007;
      rssi = "-66";
      uuid = " e2c56db5-dffb-48d2-b060-d0f5a71096e0";
    },
        {
      major = 1001;
      minor = 17010;
      rssi = "-67";
      uuid = " e2c56db5-dffb-48d2-b060-d0f5a71096e0";
    }
  );
}

根据客户端上传的设备列表信息和指纹库信息计算出一个位置点返回给客户端,这样一个定位服务算搞定了!目前有多种定位算法和技术,可以参考相关文献资料!

以上就是搭建蓝牙定位系统整个内容,谢谢!

这篇搭建简易蓝牙定位系统的实现方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。