Swift语言iOS8的蓝牙Bluetooth解析

http://www.itnose.net/detail/6253738.html

开发中央步骤:

  1.添加CoreBluetooth.framework框架到你的工程

  2.继承两个协议:CBCentralManagerDelegate和CBPeripheralDelegate

  个人写的demo,有详细注释,这里就不

  

  1 //
  2 //  ViewController.swift
  3 //  CoreBluetooth
  4 //
  5 //  Created by fanviwa on 15/4/23.
  6 //  Copyright (c) 2015年 fanviwa. All rights reserved.
  7 //
  8 
  9 import UIKit
 10 
 11 class ViewController: UIViewController,CBCentralManagerDelegate,CBPeripheralDelegate {
 12 
 13     @IBOutlet weak var tableView: UITableView!
 14     
 15     //添加属性
 16     var manager: CBCentralManager!
 17     var peripheral: CBPeripheral!
 18     var writeCharacteristic: CBCharacteristic!
 19     //保存收到的蓝牙设备
 20     var deviceList:NSMutableArray = NSMutableArray()
 21     //服务和特征的UUID
 22     let kServiceUUID = [CBUUID(string:"FFE0")]
 23     let kCharacteristicUUID = [CBUUID(string:"FFE1")]
 24     
 25     override func viewDidLoad() {
 26         super.viewDidLoad()
 27         //1.创建一个中央对象
 28         self.manager = CBCentralManager(delegate: self,queue: nil)
 29     }
 30     
 31     //2.检查运行这个App的设备是不是支持BLE。代理方法
 32     func centralManagerDidUpdateState(central: CBCentralManager){
 33         switch central.state {
 34         case CBCentralManagerState.PoweredOn:
 35             //扫描周边蓝牙外设.
 36             //写nil表示扫描所有蓝牙外设,如果传上面的kServiceUUID,那么只能扫描出FFEO这个服务的外设。
 37             //CBCentralManagerScanOptionAllowDuplicatesKey为true表示允许扫到重名,false表示不扫描重名的。
 38             self.manager.scanForPeripheralsWithServices(kServiceUUID,options:[CBCentralManagerScanOptionAllowDuplicatesKey: false])
 39             println("蓝牙已打开,请扫描外设")
 40         case CBCentralManagerState.Unauthorized:
 41             println("这个应用程序是无权使用蓝牙低功耗")
 42         case CBCentralManagerState.PoweredOff:
 43             println("蓝牙目前已关闭")
 44         default:
 45             println("中央管理器没有改变状态")
 46         }
 47     }
 48     
 49     //3.查到外设后,停止扫描,连接设备
 50     //广播、扫描的响应数据保存在advertisementData 中,可以通过CBAdvertisementData 来访问它。
 51     func centralManager(central: CBCentralManager!,didDiscoverPeripheral peripheral: CBPeripheral!,advertisementData: [NSObject : AnyObject]!,RSSI : NSNumber!){
 52         if(!self.deviceList.containsObject(peripheral)){
 53             self.deviceList.addObject(peripheral)
 54         }
 55         self.tableView.reloadData()
 56     }
 57     
 58     //4.连接外设成功,开始发现服务
 59     func centralManager(central: CBCentralManager!,didConnectPeripheral peripheral: CBPeripheral!){
 60         //停止扫描外设
 61         self.manager.stopScan()
 62         self.peripheral = peripheral
 63         self.peripheral.delegate = self
 64         self.peripheral.discoverServices(nil)
 65         
 66     }
 67     
 68     //连接外设失败
 69     func centralManager(central: CBCentralManager!,didFailToConnectPeripheral peripheral: CBPeripheral!,error: NSError!){
 70         println("连接外设失败===\(error)")
 71     }
 72     
 73     //5.请求周边去寻找它的服务所列出的特征
 74     func peripheral(peripheral: CBPeripheral!,didDiscoverServices error: NSError!){
 75         if error != nil {
 76             println("错误的服务特征:\(error.localizedDescription)")
 77             return
 78         }
 79         var i: Int = 0
 80         for service in peripheral.services {
 81             println("服务的UUID:\(service.UUID)")
 82             i++
 83             //发现给定格式的服务的特性
 84 //            if (service.UUID == CBUUID(string:"FFE0")) {
 85 //                peripheral.discoverCharacteristics(kCharacteristicUUID,forService: service as CBService)
 86 //            }
 87             peripheral.discoverCharacteristics(nil,forService: service as! CBService)
 88         }
 89     }
 90     
 91     //6.已搜索到Characteristics
 92     func peripheral(peripheral: CBPeripheral!,didDiscoverCharacteristicsForService service: CBService!,error: NSError!){
 93         //println("发现特征的服务:\(service.UUID.data)   ==  服务UUID:\(service.UUID)")
 94         if (error != nil){
 95             println("发现错误的特征:\(error.localizedDescription)")
 96             return
 97         }
 98         
 99         for  characteristic in service.characteristics  {
100             //罗列出所有特性,看哪些是notify方式的,哪些是read方式的,哪些是可写入的。
101             println("服务UUID:\(service.UUID)         特征UUID:\(characteristic.UUID)")
102             //特征的值被更新,用setNotifyValue:forCharacteristic
103             switch characteristic.UUID.description {
104             case "FFE1":
105                 //如果以通知的形式读取数据,则直接发到didUpdateValueForCharacteristic方法处理数据。
106                 self.peripheral.setNotifyValue(true,forCharacteristic: characteristic as! CBCharacteristic)
107                 
108             case "2A37":
109                 //通知关闭,read方式接受数据。则先发送到didUpdateNotificationStateForCharacteristic方法,再通过readValueForCharacteristic发到didUpdateValueForCharacteristic方法处理数据。
110                 self.peripheral.readValueForCharacteristic(characteristic as! CBCharacteristic)
111                 
112             case "2A38":
113                 self.peripheral.readValueForCharacteristic(characteristic as! CBCharacteristic)
114                 
115             case "Battery Level":
116                 self.peripheral.setNotifyValue(true,forCharacteristic: characteristic as! CBCharacteristic)
117                 
118             case "Manufacturer Name String":
119                 self.peripheral.readValueForCharacteristic(characteristic as! CBCharacteristic)
120                 
121             case "6E400003-B5A3-F393-E0A9-E50E24DCCA9E":
122                 self.peripheral.setNotifyValue(true,forCharacteristic: characteristic as! CBCharacteristic)
123                 
124             case "6E400002-B5A3-F393-E0A9-E50E24DCCA9E":
125                 self.peripheral.readValueForCharacteristic(characteristic as! CBCharacteristic)
126                 self.writeCharacteristic = characteristic as! CBCharacteristic
127                 let heartRate: NSString = "ZhuHai XY"
128                 let dataValue: NSData = heartRate.dataUsingEncoding(NSUTF8StringEncoding)!
129                 //写入数据
130                 self.writeValue(service.UUID.description,characteristicUUID: characteristic.UUID.description,peripheral: self.peripheral,data: dataValue)
131                 
132             default:
133                 break
134             }
135         }
136     }
137     
138     //8.获取外设发来的数据,不论是read和notify,获取数据都是从这个方法中读取。
139     func peripheral(peripheral: CBPeripheral!,didUpdateValueForCharacteristic characteristic: CBCharacteristic!,error: NSError!){
140         if(error != nil){
141             println("发送数据错误的特性是:\(characteristic.UUID)     错误信息:\(error.localizedDescription)       错误数据:\(characteristic.value)")
142             return
143         }
144         
145         
146 
147         switch characteristic.UUID.description {
148         case "FFE1":
149             println("=\(characteristic.UUID)特征发来的数据是:\(characteristic.value)=")
150             
151         case "2A37":
152             println("=\(characteristic.UUID.description):\(characteristic.value)=")
153             
154         case "2A38":
155             var dataValue: Int = 0
156             characteristic.value.getBytes(&dataValue,range:NSRange(location: 0,length: 1))
157             println("2A38的值为:\(dataValue)")
158             
159         case "Battery Level":          //如果发过来的是Byte值,在Objective-C中直接.getBytes就是Byte数组了,在swift目前就用这个方法处理吧!
160             var batteryLevel: Int = 0
161             characteristic.value.getBytes(&batteryLevel,length: 1))
162             println("当前为你检测了\(batteryLevel)秒!")
163             
164         case "Manufacturer Name String":          //如果发过来的是字符串,则用NSData和NSString转换函数
165             let manufacturerName: NSString = NSString(data: characteristic.value,encoding: NSUTF8StringEncoding)!
166             println("制造商名称为:\(manufacturerName)")
167             
168         case "6E400003-B5A3-F393-E0A9-E50E24DCCA9E":
169             println("=\(characteristic.UUID)特征发来的数据是:\(characteristic.value)=")
170             
171         case "6E400002-B5A3-F393-E0A9-E50E24DCCA9E":
172             println("返回的数据是:\(characteristic.value)")
173             
174         default:
175             break
176         }
177     }
178     
179     //7.这个是接收蓝牙通知,很少用。读取外设数据主要用上面那个方法didUpdateValueForCharacteristic。
180     func peripheral(peripheral: CBPeripheral!,didUpdateNotificationStateForCharacteristic characteristic: CBCharacteristic!,error: NSError!){
181         if error != nil {
182             println("更改通知状态错误:\(error.localizedDescription)")
183         }
184         
185         println("收到的特性数据:\(characteristic.value)")
186         //如果它不是传输特性,退出.
187 //        if characteristic.UUID.isEqual(kCharacteristicUUID) {
188 //            return
189 //        }
190         //开始通知
191         if characteristic.isNotifying {
192             println("开始的通知\(characteristic)")
193             peripheral.readValueForCharacteristic(characteristic)
194         }else{
195             //通知已停止
196             //所有外设断开
197             println("通知\(characteristic)已停止设备断开连接")
198             self.manager.cancelPeripheralConnection(self.peripheral)
199         }
200     }
201     
202     //写入数据
203     func writeValue(serviceUUID: String,characteristicUUID: String,peripheral: CBPeripheral!,data: NSData!){
204         peripheral.writeValue(data,forCharacteristic: self.writeCharacteristic,type: CBCharacteristicWriteType.WithResponse)
205         println("手机向蓝牙发送的数据为:\(data)")
206     }
207     //用于检测中心向外设写数据是否成功
208     func peripheral(peripheral: CBPeripheral!,didWriteValueForCharacteristic characteristic: CBCharacteristic!,error: NSError!) {
209         if(error != nil){
210             println("发送数据失败!error信息:\(error)")
211         }else{
212             println("发送数据成功\(characteristic)")
213         }
214     }
215     
216     func numberOfSectionsInTableView(tableView: UITableView) -> Int {
217         // #warning Potentially incomplete method implementation.
218         // Return the number of sections.
219         return 1
220     }
221     
222     func tableView(tableView: UITableView,numberOfRowsInSection section: Int) -> Int {
223         // #warning Incomplete method implementation.
224         // Return the number of rows in the section.
225         return self.deviceList.count
226     }
227     
228     
229     func tableView(tableView: UITableView,cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
230         //PCell,确定单元格的样式
231         let cell = tableView.dequeueReusableCellWithIdentifier("FhrCell",forIndexPath: indexPath) as! UITableViewCell
232         var device:CBPeripheral=self.deviceList.objectAtIndex(indexPath.row) as! CBPeripheral
233         //主标题
234         cell.textLabel?.text = device.name
235         //副标题
236         cell.detailTextLabel?.text = device.identifier.UUIDString
237         return cell
238     }
239     
240     //通过选择来连接和断开外设
241     func tableView(tableView: UITableView,didSelectRowAtIndexPath indexPath: NSIndexPath) {
242         if(self.peripheralList.containsObject(self.deviceList.objectAtIndex(indexPath.row))){
243             self.manager.cancelPeripheralConnection(self.deviceList.objectAtIndex(indexPath.row) as! CBPeripheral)
244             self.peripheralList.removeObject(self.deviceList.objectAtIndex(indexPath.row))
245             println("蓝牙已断开!")
246         }else{
247             self.manager.connectPeripheral(self.deviceList.objectAtIndex(indexPath.row) as! CBPeripheral,options: nil)
248             self.peripheralList.addObject(self.deviceList.objectAtIndex(indexPath.row))
249             println("蓝牙已连接! \(self.peripheralList.count)")
250         }
251     }
252 
253 }

  注意:

查看特性以什么方式读取,就看每个Characteristic的notifying属性值,NO说明read方式,YES说明notifying通知方式

<CBCharacteristic: 0x17008a0f0,UUID = 6E400003-B5A3-F393-E0A9-E50E24DCCA9E,properties = 0x10,value = (null),notifying = YES>

下面是properties的具体解释:

SWIFT struct CBCharacteristicProperties : RawOptionSetType { init(_ value: UInt) var value: UInt static var Broadcast: CBCharacteristicProperties { get } static var Read: CBCharacteristicProperties { get } static var WriteWithoutResponse: CBCharacteristicProperties { get } static var Write: CBCharacteristicProperties { get } static var Notify: CBCharacteristicProperties { get } static var Indicate: CBCharacteristicProperties { get } static var AuthenticatedSignedWrites: CBCharacteristicProperties { get } static var ExtendedProperties: CBCharacteristicProperties { get } static var NotifyEncryptionRequired: CBCharacteristicProperties { get } static var IndicateEncryptionRequired: CBCharacteristicProperties { get } } OBJECTIVE-C typedef enum { CBCharacteristicPropertyBroadcast = 0x01,CBCharacteristicPropertyRead = 0x02,CBCharacteristicPropertyWriteWithoutResponse = 0x04,CBCharacteristicPropertyWrite = 0x08,CBCharacteristicPropertyNotify = 0x10,CBCharacteristicPropertyIndicate = 0x20,CBCharacteristicPropertyAuthenticatedSignedWrites = 0x40,CBCharacteristicPropertyExtendedProperties = 0x80,CBCharacteristicPropertyNotifyEncryptionRequired = 0x100,CBCharacteristicPropertyIndicateEncryptionRequired = 0x200,} CBCharacteristicProperties;

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐


软件简介:蓝湖辅助工具,减少移动端开发中控件属性的复制和粘贴.待开发的功能:1.支持自动生成约束2.开发设置页面3.做一个浏览器插件,支持不需要下载整个工程,可即时操作当前蓝湖浏览页面4.支持Flutter语言模板生成5.支持更多平台,如Sketch等6.支持用户自定义语言模板
现实生活中,我们听到的声音都是时间连续的,我们称为这种信号叫模拟信号。模拟信号需要进行数字化以后才能在计算机中使用。目前我们在计算机上进行音频播放都需要依赖于音频文件。那么音频文件如何生成的呢?音频文件的生成过程是将声音信息采样、量化和编码产生的数字信号的过程,我们人耳所能听到的声音频率范围为(20Hz~20KHz),因此音频文件格式的最大带宽是20KHZ。根据奈奎斯特的理论,音频文件的采样率一般在40~50KHZ之间。奈奎斯特采样定律,又称香农采样定律。...............
前言最近在B站上看到一个漂亮的仙女姐姐跳舞视频,循环看了亿遍又亿遍,久久不能离开!看着小仙紫姐姐的蹦迪视频,除了一键三连还能做什么?突发奇想,能不能把舞蹈视频转成代码舞呢?说干就干,今天就手把手教大家如何把跳舞视频转成代码舞,跟着仙女姐姐一起蹦起来~视频来源:【紫颜】见过仙女蹦迪吗 【千盏】一、核心功能设计总体来说,我们需要分为以下几步完成:从B站上把小姐姐的视频下载下来对视频进行截取GIF,把截取的GIF通过ASCII Animator进行ASCII字符转换把转换的字符gif根据每
【Android App】实战项目之仿抖音的短视频分享App(附源码和演示视频 超详细必看)
前言这一篇博客应该是我花时间最多的一次了,从2022年1月底至2022年4月底。我已经将这篇博客的内容写为论文,上传至arxiv:https://arxiv.org/pdf/2204.10160.pdf欢迎大家指出我论文中的问题,特别是语法与用词问题在github上,我也上传了完整的项目:https://github.com/Whiffe/Custom-ava-dataset_Custom-Spatio-Temporally-Action-Video-Dataset关于自定义ava数据集,也是后台
因为我既对接过session、cookie,也对接过JWT,今年因为工作需要也对接了gtoken的2个版本,对这方面的理解还算深入。尤其是看到官方文档评论区又小伙伴表示看不懂,所以做了这期视频内容出来:视频在这里:本期内容对应B站的开源视频因为涉及的知识点比较多,视频内容比较长。如果你觉得看视频浪费时间,可以直接阅读源码:goframe v2版本集成gtokengoframe v1版本集成gtokengoframe v2版本集成jwtgoframe v2版本session登录官方调用示例文档jwt和sess
【Android App】实战项目之仿微信的私信和群聊App(附源码和演示视频 超详细必看)
用Android Studio的VideoView组件实现简单的本地视频播放器。本文将讲解如何使用Android视频播放器VideoView组件来播放本地视频和网络视频,实现起来还是比较简单的。VideoView组件的作用与ImageView类似,只是ImageView用于显示图片,VideoView用于播放视频。...
采用MATLAB对正弦信号,语音信号进行生成、采样和内插恢复,利用MATLAB工具箱对混杂噪声的音频信号进行滤波
随着移动互联网、云端存储等技术的快速发展,包含丰富信息的音频数据呈现几何级速率增长。这些海量数据在为人工分析带来困难的同时,也为音频认知、创新学习研究提供了数据基础。在本节中,我们通过构建生成模型来生成音频序列文件,从而进一步加深对序列数据处理问题的了解。
基于yolov5+deepsort+slowfast算法的视频实时行为检测。1. yolov5实现目标检测,确定目标坐标 2. deepsort实现目标跟踪,持续标注目标坐标 3. slowfast实现动作识别,并给出置信率 4. 用框持续框住目标,并将动作类别以及置信度显示在框上
数字电子钟设计本文主要完成数字电子钟的以下功能1、计时功能(24小时)2、秒表功能(一个按键实现开始暂停,另一个按键实现清零功能)3、闹钟功能(设置闹钟以及到时响10秒)4、校时功能5、其他功能(清零、加速、星期、八位数码管显示等)前排提示:前面几篇文章介绍过的内容就不详细介绍了,可以看我专栏的前几篇文章。PS.工程文件放在最后面总体设计本次设计主要是在前一篇文章 数字电子钟基本功能的实现 的基础上改编而成的,主要结构不变,分频器将50MHz分为较低的频率备用;dig_select
1.进入官网下载OBS stdioOpen Broadcaster Software | OBS (obsproject.com)2.下载一个插件,拓展OBS的虚拟摄像头功能链接:OBS 虚拟摄像头插件.zip_免费高速下载|百度网盘-分享无限制 (baidu.com)提取码:6656--来自百度网盘超级会员V1的分享**注意**该插件必须下载但OBS的根目录(应该是自动匹配了的)3.打开OBS,选中虚拟摄像头选择启用在底部添加一段视频录制选择下面,进行录制.
Meta公司在9月29日首次推出一款人工智能系统模型:Make-A-Video,可以从给定的文字提示生成短视频。基于**文本到图像生成技术的最新进展**,该技术旨在实现文本到视频的生成,可以仅用几个单词或几行文本生成异想天开、独一无二的视频,将无限的想象力带入生活
音频信号叠加噪声及滤波一、前言二、信号分析及加噪三、滤波去噪四、总结一、前言之前一直对硬件上的内容比较关注,但是可能是因为硬件方面的东西可能真的是比较杂,而且需要渗透的东西太多了,所以学习进展比较缓慢。因为也很少有单纯的硬件学习研究,总是会伴随着各种理论需要硬件做支撑,所以还是想要慢慢接触理论学习。但是之前总找不到切入点,不知道从哪里开始,就一直拖着。最近稍微接触了一点信号处理,就用这个当作切入点,开始接触理论学习。二、信号分析及加噪信号处理选用了matlab做工具,选了一个最简单的语音信号处理方
腾讯云 TRTC 实时音视频服务体验,从认识 TRTC 到 TRTC 的开发实践,Demo 演示& IM 服务搭建。
音乐音频分类技术能够基于音乐内容为音乐添加类别标签,在音乐资源的高效组织、检索和推荐等相关方面的研究和应用具有重要意义。传统的音乐分类方法大量使用了人工设计的声学特征,特征的设计需要音乐领域的知识,不同分类任务的特征往往并不通用。深度学习的出现给更好地解决音乐分类问题提供了新的思路,本文对基于深度学习的音乐音频分类方法进行了研究。首先将音乐的音频信号转换成声谱作为统一表示,避免了手工选取特征存在的问题,然后基于一维卷积构建了一种音乐分类模型。
C++知识精讲16 | 井字棋游戏(配资源+视频)【赋源码,双人对战】
本文主要讲解如何在Java中,使用FFmpeg进行视频的帧读取,并最终合并成Gif动态图。
在本篇博文中,我们谈及了 Swift 中 some、any 关键字以及主关联类型(primary associated types)的前世今生,并由浅及深用简明的示例向大家讲解了它们之间的奥秘玄机。