iBeacon data format

Beacons通常使用广播频道,由beacon望文生义,他们每隔一段时间传输数据包,这些数据被设备像智能机接受,因此iBeacons是简单的低功耗蓝牙广播的特殊应用,iOS端加入了特别的支持。
你尝试拦截一个蓝牙广播包,例如来自于Estimote beacon,你将看到下列数据:
02 01 06 1A FF 4C 00 02 15 B9 40 7F 30 F5 F8 46 6E AF F9 25 55 6B 57 FE 6D 00 49 00 
(捕获这些数据,如果使用OSX,一个附加的下载包含一个蓝牙扫描和包日志)
以上数据已经有报文了,固定访问地址、广播PDU头和MAC地址被移除;它只有广播数据—30字节,因此它适应了31字节的限制。
什么使得蓝牙广播成为iBeacon?格式由苹果规定,分解如下:
02 01 06 1A FF 4C 00 02 15: iBeacon prefix (fixed) B9 40 7F 30 F5 F8 46 6E AF F9 25 55 6B 57 FE 6D: proximity UUID (here: Estimote’s fixed UUID) 00 49: major 00 0A: minor C5: 2’s complement of measured TX power 

时间: 2024-10-13 02:01:51

iBeacon data format的相关文章

javascript data format

Date.prototype.Format = function(fmt) { var o = { "M+" : this.getMonth()+1, //月份 "d+" : this.getDate(), //日 "H+" : this.getHours(), //小时 "m+" : this.getMinutes(), //分 "s+" : this.getSeconds(), //秒 "q+

MySql Date_Format(data,format)

DATE_FORMAT(date,format) Formats the date value according to the format string. The following specifiers may be used in the format string. As of MySQL 3.23, the "%" character is required before format specifier characters. In earlier versions of

ghld data format

%CTF: 1.00%FileType: PROF strp "VelocityProfile"%PROFSpec: 1.00 2006 00 00%Manufacturer: CODAR Ocean Sensors. RiverSonde%Site: 0009 "Jiuhua"%TimeStamp: 2016 11 08 12 00 00%TimeZone: "GMT" +0.000 0%ISOTimeStamp: "2016-11-

VCF (Variant Call Format)格式详解

VCF文件示例(VCFv4.2) ##fileformat=VCFv4.2 ##fileDate=20090805 ##source=myImputationProgramV3.1 ##reference=file:///seq/references/1000GenomesPilot-NCBI36.fasta ##contig=<ID=20,length=62435964,assembly=B36,md5=f126cdf8a6e0c7f379d618ff66beb2da,species="

Indexing Sensor Data

In particular embodiments, a method includes, from an indexer in a sensor network, accessing a set of sensor data that includes sensor data aggregated together from sensors in the sensor network, one or more time stamps for the sensor data, and metad

Data manipulation in python (module 5)

1. Subplots %matplotlib notebook import matplotlib.pyplot as plt import numpy as np plt.figure() # subplot with 1 row, 2 columns, and current axis is 1st subplot axes plt.subplot(1, 2, 1) linear_data = np.array([1,2,3,4,5,6,7,8]) # plot exponential d

ADF_Data Binding系列2_使用URL Service Data Control

2015-02-16 Created By BaoXinjian 一.摘要 本文介绍通过XML Schema创建URL Data Control显示RSS需求 Step 1: Create a New Application and Project Step 2: Create an XML Schema Step 3: Create a URL Service Data Control Step 4: Create a JSF Page Step 5: Add the Data Control

WAVE PCM soundfile format

WAVE PCM soundfile format The WAVE file format is a subset of Microsoft's RIFF specification for the storage of multimedia files. A RIFF file starts out with a file header followed by a sequence of data chunks. A WAVE file is often just a RIFF file w

The Variant Call Format

VCF is a text format. It contains meta-information lines, a header line, and then data lines each containing information about a posittion in the genome. The fomat also has the ability to contain genotype information on samples for each position. (图看