- 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 问题。好的,我已经成功写入文件。例如。 //获取文件名 String filename = getResources().getString(R.string.filename
我已经将相同的图像保存到/data/data/mypackage/img/中,现在我想显示这个全屏,我曾尝试使用 ACTION_VIEW 来显示 android 标准程序,但它不是从/data/dat
我正在使用Xcode 9,Swift 4。 我正在尝试使用以下代码从URL在ImageView中显示图像: func getImageFromUrl(sourceUrl: String) -> UII
我的 Ubuntu 安装 genymotion 有问题。主要是我无法调试我的数据库,因为通过 eclipse 中的 DBMS 和 shell 中的 adb 我无法查看/data/文件夹的内容。没有显示
我正在尝试用 PHP 发布一些 JSON 数据。但是出了点问题。 这是我的 html -- {% for x in sets %}
我观察到两种方法的结果不同。为什么是这样?我知道 lm 上发生了什么,但无法弄清楚 tslm 上发生了什么。 > library(forecast) > set.seed(2) > tts lm(t
我不确定为什么会这样!我有一个由 spring data elasticsearch 和 spring data jpa 使用的类,但是当我尝试运行我的应用程序时出现错误。 Error creatin
在 this vega 图表,如果我下载并转换 flare-dependencies.json使用以下 jq 到 csv命令, jq -r '(map(keys) | add | unique) as
我正在提交一个项目,我必须在其中创建一个带有表的 mysql 数据库。一切都在我这边进行,所以我只想检查如何将我所有的压缩文件发送给使用不同计算机的人。基本上,我如何为另一台计算机创建我的数据库文件,
我有一个应用程序可以将文本文件写入内部存储。我想仔细看看我的电脑。 我运行了 Toast.makeText 来显示路径,它说:/数据/数据/我的包 但是当我转到 Android Studio 的 An
我喜欢使用 Genymotion 模拟器以如此出色的速度加载 Android。它有非常好的速度,但仍然有一些不稳定的性能。 如何从 Eclipse 中的文件资源管理器访问 Genymotion 模拟器
我需要更改 Silverlight 中文本框的格式。数据通过 MVVM 绑定(bind)。 例如,有一个 int 属性,我将 1 添加到 setter 中的值并调用 OnPropertyChanged
我想向 Youtube Data API 提出请求,但我不需要访问任何用户信息。我只想浏览公共(public)视频并根据搜索词显示视频。 我可以在未经授权的情况下这样做吗? 最佳答案 YouTube
我已经设置了一个 Twilio 应用程序,我想向人们发送更新,但我不想回复单个文本。我只是想让他们在有问题时打电话。我一切正常,但我想在发送文本时显示传入文本,以确保我不会错过任何问题。我正在使用 p
我有一个带有表单的网站(目前它是纯 HTML,但我们正在切换到 JQuery)。流程是这样的: 接受用户的输入 --- 5 个整数 通过 REST 调用网络服务 在服务器端运行一些计算...并生成一个
假设我们有一个名为 configuration.js 的文件,当我们查看内部时,我们会看到: 'use strict'; var profile = { "project": "%Projec
这部分是对 Previous Question 的扩展我的: 我现在可以从我的 CI Controller 成功返回 JSON 数据,它返回: {"results":[{"id":"1","Sourc
有什么有效的方法可以删除 ios 中 CBL 的所有文档存储?我对此有疑问,或者,如果有人知道如何从本质上使该应用程序像刚刚安装一样,那也会非常有帮助。我们正在努力确保我们的注销实际上将应用程序设置为
我有一个 Rails 应用程序,它与其他 Rails 应用程序通信以进行数据插入。我使用 jQuery $.post 方法进行数据插入。对于插入,我的其他 Rails 应用程序显示 200 OK。但在
我正在为服务于发布请求的 API 调用运行单元测试。我正在传递请求正文,并且必须将响应作为帐户数据返回。但我只收到断言错误 注意:数据是从 Azure 中获取的 spec.js const accou
我是一名优秀的程序员,十分优秀!