- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章iOS蓝牙开发数据实时传输由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
随着iOS项目开发 很多app需要通过蓝牙与设备连接 。
蓝牙开发注意:
先定义中心设备和外围设备以及遵守蓝牙协议 。
1
2
3
4
5
6
7
|
@interface ViewController()<CBCentralManagerDelegate,CBPeripheralDelegate>
@property (strong, nonatomic) CBCentralManager *manager;
@property (nonatomic, strong) CBPeripheral *peripheral;
@property (nonatomic, weak)NSTimer * connentTimer;
@end
|
再实现delegate方法 。
1.判断蓝牙状态,如成功则扫描指定UUID设备(如不指定UUID,则无法后台持续连接) 2.当发现指定设备后,连接该设备 3.当连接指定外围设备成功,编写定时器,每秒读取1次RSSI 4.当监听到失去和外围设备连接,重新建立连接 5.当读取到RSSI值,打印出它的值 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
|
//蓝牙状态
- (
void
)centralManagerDidUpdateState:(CBCentralManager *)central
{
NSString * state = nil;
switch
([central state])
{
case
CBCentralManagerStateUnsupported:
state = @
"The platform/hardware doesn't support Bluetooth Low Energy."
;
break
;
//应用程序没有被授权使用蓝牙
case
CBCentralManagerStateUnauthorized:
state = @
"The app is not authorized to use Bluetooth Low Energy."
;
break
;
//尚未打开蓝牙
case
CBCentralManagerStatePoweredOff:
state = @
"Bluetooth is currently powered off."
;
break
;
//连接成功
case
CBCentralManagerStatePoweredOn:
[self.manager scanForPeripheralsWithServices:nil options:nil];
state = @
"work"
;
break
;
case
CBCentralManagerStateUnknown:
default
:
;
}
NSLog(@
"Central manager state: %@"
, state);
}
//查找设备
- (
void
)centralManager:(CBCentralManager *)central didDiscoverPeripheral:(CBPeripheral *)peripheral advertisementData:(NSDictionary *)advertisementData RSSI:(NSNumber *)RSSI
{
//每个蓝牙设备有自己唯一的标识符,根据标识符确认自己要连接的设备
if
([peripheral.identifier isEqual:self.peripheral.identifier])
{
self.peripheral = peripheral;
//数据连接定时器
self.connentTimer = [NSTimer scheduledTimerWithTimeInterval:1 target:self selector:@selector(connentPeripheral) userInfo:@
"timer"
repeats:YES];
[self.connentTimer fire];
}
}
- (
void
)connentPeripheral {
//连接外设
self.manager.delegate = self;
[self.manager connectPeripheral:_peripheral options:[NSDictionary dictionaryWithObject:[NSNumber numberWithBool:YES] forKey:CBConnectPeripheralOptionNotifyOnDisconnectionKey]];
}
//连接成功后调用
- (
void
)centralManager:(CBCentralManager *)central didConnectPeripheral:(CBPeripheral *)peripheral
{
NSLog(@
"Did connect to peripheral: %@,%@"
, peripheral,peripheral.name);
[peripheral setDelegate:self];
//查找服务
[peripheral discoverServices:nil];
[self.connentTimer invalidate];
//监测设备是否断开了
// [self createWorkDataSourceWithTimeInterval:1];
}
//当监听到失去和外围设备连接,重新建立连接
//这个方法是必须实现的,因为蓝牙会中断连接,正好触发这个方法重建连接。重建连接可能造成数秒后才能读取到RSSI。
- (
void
)centralManager:(CBCentralManager *)central didDisconnectPeripheral:(CBPeripheral *)peripheral error:(NSError *)error
{
[self.manager connectPeripheral:peripheral options:nil];
}
- (
void
)centralManager:(CBCentralManager *)central didFailToConnectPeripheral:(CBPeripheral *)peripheral error:(NSError *)error
{
NSLog(@
"%@"
,error.description);
}
//返回的蓝牙服务通知通过代理实现
- (
void
)peripheral:(CBPeripheral *)peripheral didDiscoverServices:(NSError *)error
{
if
(error)
{
NSLog(@
"Discovered services for %@ with error: %@"
, peripheral.name, [error localizedDescription]);
return
;
}
for
(CBService *service in peripheral.services)
{
// NSLog(@"Service found with UUID: %@", service.UUID.UUIDString);
//发现服务
if
([service.UUID isEqual:[CBUUID UUIDWithString:@
"180D"
]])
//heart rate
{
//在一个服务中寻找特征值
[peripheral discoverCharacteristics:nil forService:service];
}
}
}
//返回的蓝牙特征值通知通过代理实现
- (
void
)peripheral:(CBPeripheral *)peripheral didDiscoverCharacteristicsForService:(CBService *)service error:(NSError *)error
{
if
(error)
{
NSLog(@
"Discovered characteristics for %@ with error: %@"
, service.UUID, [error localizedDescription]);
return
;
}
for
(CBCharacteristic * characteristic in service.characteristics)
{
NSLog(@
"characteristic:%@"
,characteristic);
if
( [characteristic.UUID isEqual:[CBUUID UUIDWithString:@
"2A37"
]])
{
[self notification:service.UUID characteristicUUID:characteristic.UUID peripheral:peripheral on:YES];
// [self.peripheral setNotifyValue:YES forCharacteristic:characteristic];
}
}
}
//处理蓝牙发过来的数据
- (
void
)peripheral:(CBPeripheral *)peripheral didUpdateValueForCharacteristic:(CBCharacteristic *)characteristic error:(NSError *)error
{
}
-(
void
) notification:(CBUUID *) serviceUUID characteristicUUID:(CBUUID *)characteristicUUID peripheral:(CBPeripheral *)p on:(
BOOL
)on
{
CBService *service = [self getServiceFromUUID:serviceUUID p:p];
if
(!service)
{
// if (p.UUID == NULL) return; // zach ios6 addedche
// NSLog(@"Could not find service with UUID on peripheral with UUID \n");
return
;
}
CBCharacteristic *characteristic = [self getCharacteristicFromUUID:characteristicUUID service:service];
if
(!characteristic)
{
// if (p.UUID == NULL) return; // zach ios6 added
// NSLog(@"Could not find characteristic with UUID on service with UUID on peripheral with UUID\n");
return
;
}
[p setNotifyValue:on forCharacteristic:characteristic];
}
-(CBService *) getServiceFromUUID:(CBUUID *)UUID p:(CBPeripheral *)p
{
for
(CBService* s in p.services)
{
if
([s.UUID isEqual:UUID])
return
s;
}
return
nil;
//Service not found on this peripheral
}
-(CBCharacteristic *) getCharacteristicFromUUID:(CBUUID *)UUID service:(CBService*)service {
for
(CBCharacteristic* c in service.characteristics)
{
if
([c.UUID isEqual:UUID])
return
c;
}
return
nil;
//Characteristic not found on this service
}
|
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我.
原文链接:https://blog.csdn.net/cbl643966855/article/details/50738313 。
最后此篇关于iOS蓝牙开发数据实时传输的文章就讲到这里了,如果你想了解更多关于iOS蓝牙开发数据实时传输的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
是否可以识别我周围启用了蓝牙的设备?我不需要与他们交流,只知道他们就在那里。 我正在寻找类似于 android 的 BluetouthDevice.startDiscovery() 的东西 这样的事情
蓝牙的 HTTP 代理服务是否允许我将 BLE 设备视为 HTTP 服务器,例如以便与设备对话的应用可以向其发送 GET/POST/PUT 请求? 或者这个操作是相反的方向,BLE 设备通过应用程序向
我正在与BlueZ库一起在Linux下管理蓝牙堆栈。我正在尝试打开一个套接字,该套接字应与已知UUID的特定服务连接。我已成功尝试按照以下示例在服务器和客户端之间打开套接字: http://peopl
有谁知道蓝牙设备如何获取范围内可发现设备的设备 ID? 理想情况下,我正在寻找涉及蓝牙协议(protocol)最小实现的最简单解决方案。 一个起点会很好,我只是想创建一个设备,它可以以最小的功耗存储附
蓝牙双模设备是否可以在与 BT LE 设备配对的同时被经典蓝牙发现?如果设备不能同时运行这两种模式也没关系,但我真的应该在这些模式之间切换芯片吗?我只是在 BT 4 Core 规范中找不到答案 最佳答
我目前正在开展一个涉及乐高 Mindstorms 套件的项目。砖 block 是 NXT,我对蓝牙 ping 速率很好奇。 我对其进行了 100 次 ping 测试,得到了一些有趣的结果。延迟似乎分为
我正在启动一个通过蓝牙进行无线 MIDI 连接的项目。据我所知,BT规范中没有定义MIDI配置文件。 我想知道你们中的一些人是否有兴趣分享有关通过 BT 使用 MIDI 的最佳方式的经验,特别是关于延
Closed. This question is off-topic。它当前不接受答案。
我想通过蓝牙将我的摩托罗拉机器人连接到 OBDKey。我以 BluetoothChat 为例连接蓝牙,使用 KWP 作为协议(protocol) 然后我写byte[]命令 command[0]=ra
几个月前,我用 C# 编写了一个 Messenger 程序,可以让许多客户端连接到服务器并进行聊天。 现在,我想为 android 编写相同的程序。在阅读了 Android Developers 中的
我目前正在制作一个与蓝牙相关的 Android 实用程序,我需要更改我的设备的设备发现范围.. 我有办法这样做吗?我目前正在考虑使用 TPL 来执行此操作,但我不太确定.. Android 应用程序或
我正在为两个玩家构建 tic tac,需要蓝牙连接来交换一些数据,我可以启用蓝牙,启用发现能力,但我不知道“BluetoothServerSocket”和客户端“BluetoothSocket”中的问
这个问题不太可能帮助任何 future 的访问者;它只与一个小的地理区域、一个特定的时间点或一个非常狭窄的情况相关,这些情况并不普遍适用于互联网的全局受众。为了帮助使这个问题更广泛地适用,visi
我正在 Microsoft visual studio express 2012,C++ 中制作一个程序,以便与具有此 mac 地址的设备建立简单的蓝牙连接:“00:12:08:24:15:50”,
我正在为 python import bluetooth 使用蓝牙模块,我相信它是 PyBluez 包。我能够从 bluetooth.BluetoothSocket 类进行连接、发送和接收,但我的应用
我正在为 python import bluetooth 使用蓝牙模块,我相信它是 PyBluez 包。我能够从 bluetooth.BluetoothSocket 类进行连接、发送和接收,但我的应用
我尝试通过以下命令来做到这一点: ./configure -developer-build -opensource -nomake examples -nomake tests make module
我有一个服务,理论上可以在没有关联 Activity 的情况下工作(因为“服务”适用于 Android 平台)。 此服务使用蓝牙,特别是注册一个具有给定名称的蓝牙服务来监听通信。当然,它必须启用蓝牙才
谁知道是否可以制作一个应用程序通过蓝牙模拟触摸屏鼠标或触控板? 如何让 PC(或 MAC)知道我是鼠标设备? 问候, 胡安 最佳答案 您应该看看蓝牙 HID 规范。这可能是可能的,具体取决于您用来模拟
我的问题很简单。我想知道什么是我的应用程序的最佳实践,以便它可以“防打瞌睡”。随着 Android N 将在更多情况下应用 Doze,这变得更加相关。 阅读时Doze Documentation有一部
我是一名优秀的程序员,十分优秀!