Swift学习第十三枪-使用Swift开发IOS中蓝牙4.0的开发流程

2024-05-04 15:32

本文主要是介绍Swift学习第十三枪-使用Swift开发IOS中蓝牙4.0的开发流程,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

前面总结了几篇关于Swift的使用,今天要讲的是关于使用Swift开发IOS中蓝牙4.0的开发流程,我以前只是会搞android的蓝牙开发,最近开始了Swift的学习,作为一个swift爱好者,想把蓝牙4.0的这个装逼神器在swift中使用一下。
使用Swift开发IOS中蓝牙4.0的开发流程有如下的几个步骤:

  • 建立桥接文件

  • 案例的实现

1. 建立桥接文件

1.1在用Swift使用OC中得类文件的时候,需要进行桥接,首先建一个.h的头文件。
注意:桥接文件的命名规则:项目名-Bridging-Header.Swift

//
//  Swfit-BLE-Bridging-Header.h
//  Swift-BLE
//
//  Created by lidong on 16/7/3.
//  Copyright © 2016年 李东. All rights reserved.
//
#import <CoreBluetooth/CoreBluetooth.h>

1.2 在Build-settings -> Swift Complier - Code Generaton —>Objective C Briding Herder中添加自己的桥接文件。
如下图:
这里写图片描述

2.案例的实现

首先,CoreBluetooth库文件为我们提供两个类CBCentralManagerDelegate,CBPeripheralDelegate ,是蓝牙操作的核心类。

CBCentralManagerDelegate 中心管理器的代理类

CBPeripheralDelegate 外围设备的代理类

2.1创建CBCentralManager,设置代理
var  myCentralManager:CBCentralManager!
myCentralManager = CBCentralManager()
myCentralManager.delegate = self
2.2启动扫描发现设备

print("扫描设备。。。。 ")         myCentralManager.scanForPeripheralsWithServices(nil, options: nil)
//蓝牙的状态func centralManager(central: CBCentralManager, didDisconnectPeripheral peripheral: CBPeripheral, error: NSError?) {switch (central.state) {case CBCentralManagerState.PoweredOn:print("蓝牙已打开, 请扫描外设!");break;case CBCentralManagerState.PoweredOff:print("蓝牙关闭,请先打开蓝牙");default:break;}}//发现设备func centralManager(central: CBCentralManager, didDiscoverPeripheral peripheral: CBPeripheral, advertisementData: [String : AnyObject], RSSI: NSNumber) {print("--didDiscoverPeripheral-")if peripheral.name == DEVICENAME{self.myPeripheral = peripheral;self.myCentralManager = central;central.connectPeripheral(self.myPeripheral, options: nil)print(self.myPeripheral);}}
2.3 发现设备后,连接设备,连接成功,关闭中心啊管理者的扫描,发现设备的服务,设置外围设备的代理
 //设备已经接成功func centralManager(central: CBCentralManager, didConnectPeripheral peripheral: CBPeripheral) {print("---------didConnectPeripheral-")print(central)print(peripheral)//关闭扫描self.myCentralManager.stopScan()self.myPeripheral.delegate = selfself.myPeripheral.discoverServices(nil)print("扫描服务...");}
2.4 根据服务发现特征
 /**发现服务调用次方法- parameter peripheral: <#peripheral description#>- parameter error:      <#error description#>*/func peripheral(peripheral: CBPeripheral, didDiscoverServices error: NSError?) {print("---发现服务调用次方法-")for s in peripheral.services!{peripheral.discoverCharacteristics(nil, forService: s)print(s.UUID.UUIDString)}}/**根据服务找特征- parameter peripheral: <#peripheral description#>- parameter service:    <#service description#>- parameter error:      <#error description#>*/func peripheral(peripheral: CBPeripheral, didDiscoverCharacteristicsForService service: CBService, error: NSError?) {print("----发现特征------")for c in service.characteristics! {if c.UUID.UUIDString == "2AF0"{print(c.UUID.UUIDString)peripheral.setNotifyValue(true, forCharacteristic: c)}if c.UUID.UUIDString == "2AF1"{print(c.UUID.UUIDString)self.writeCharacteristic = c}}}
2.5向设备发送指令,获取数据
 /**写入后的回掉方法- parameter peripheral:     <#peripheral description#>- parameter characteristic: <#characteristic description#>- parameter error:          <#error description#>*/func peripheral(peripheral: CBPeripheral, didWriteValueForCharacteristic characteristic: CBCharacteristic, error: NSError?) {print("didWriteValueForCharacteristic")}/**<#设置特征为正在监听,读取数据#>- parameter peripheral:     <#peripheral description#>- parameter characteristic: <#characteristic description#>- parameter error:          <#error description#>*/func peripheral(peripheral: CBPeripheral, didUpdateNotificationStateForCharacteristic characteristic: CBCharacteristic, error: NSError?) {print("-----didUpdateNotificationStateForCharacteristic-----")if (error != nil) {print(error?.code);}//Notification has startedif(characteristic.isNotifying){peripheral.readValueForCharacteristic(characteristic);print(characteristic.UUID.UUIDString);}}/**获取外设的数据- parameter peripheral:     <#peripheral description#>- parameter characteristic: <#characteristic description#>- parameter error:          <#error description#>*/func peripheral(peripheral: CBPeripheral, didUpdateValueForCharacteristic characteristic: CBCharacteristic, error: NSError?) {print("----didUpdateValueForCharacteristic---")if  characteristic.UUID.UUIDString == "2AF0"  {let data:NSData = characteristic.value!print(data)let  d  = Array(UnsafeBufferPointer(start: UnsafePointer<UInt8>(data.bytes), count: data.length))print(d)let s:String =  HexUtil.encodeToString(d)if s != "00" {result += sprint(result )print(result.characters.count )}if result.characters.count == 38 {lable.text = result}}}
2.6 发送指令的方法
    /**发送指令到设备*/func writeToPeripheral(bytes:[UInt8]) {if writeCharacteristic != nil {let data1:NSData = dataWithHexstring(bytes)self.myPeripheral.writeValue(data1, forCharacteristic: writeCharacteristic, type: CBCharacteristicWriteType.WithResponse)} else{}}/**将[UInt8]数组转换为NSData- parameter bytes: <#bytes description#>- returns: <#return value description#>*/func dataWithHexstring(bytes:[UInt8]) -> NSData {let data = NSData(bytes: bytes, length: bytes.count)return data}

总结:使用Swift开发IOS中蓝牙4.0的开发流程基本就是如上两大步骤,六小步骤,如果有不明白,可以联系我。

注意:蓝牙调试代码只能真机,模拟器是没效果的。

代码地址https://github.com/lidong1665/Swift-BLE

截图

这篇关于Swift学习第十三枪-使用Swift开发IOS中蓝牙4.0的开发流程的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/959520

相关文章

使用Python构建智能BAT文件生成器的完美解决方案

《使用Python构建智能BAT文件生成器的完美解决方案》这篇文章主要为大家详细介绍了如何使用wxPython构建一个智能的BAT文件生成器,它不仅能够为Python脚本生成启动脚本,还提供了完整的文... 目录引言运行效果图项目背景与需求分析核心需求技术选型核心功能实现1. 数据库设计2. 界面布局设计3

使用IDEA部署Docker应用指南分享

《使用IDEA部署Docker应用指南分享》本文介绍了使用IDEA部署Docker应用的四步流程:创建Dockerfile、配置IDEADocker连接、设置运行调试环境、构建运行镜像,并强调需准备本... 目录一、创建 dockerfile 配置文件二、配置 IDEA 的 Docker 连接三、配置 Do

Android Paging 分页加载库使用实践

《AndroidPaging分页加载库使用实践》AndroidPaging库是Jetpack组件的一部分,它提供了一套完整的解决方案来处理大型数据集的分页加载,本文将深入探讨Paging库... 目录前言一、Paging 库概述二、Paging 3 核心组件1. PagingSource2. Pager3.

python使用try函数详解

《python使用try函数详解》Pythontry语句用于异常处理,支持捕获特定/多种异常、else/final子句确保资源释放,结合with语句自动清理,可自定义异常及嵌套结构,灵活应对错误场景... 目录try 函数的基本语法捕获特定异常捕获多个异常使用 else 子句使用 finally 子句捕获所

C++11右值引用与Lambda表达式的使用

《C++11右值引用与Lambda表达式的使用》C++11引入右值引用,实现移动语义提升性能,支持资源转移与完美转发;同时引入Lambda表达式,简化匿名函数定义,通过捕获列表和参数列表灵活处理变量... 目录C++11新特性右值引用和移动语义左值 / 右值常见的左值和右值移动语义移动构造函数移动复制运算符

Python对接支付宝支付之使用AliPay实现的详细操作指南

《Python对接支付宝支付之使用AliPay实现的详细操作指南》支付宝没有提供PythonSDK,但是强大的github就有提供python-alipay-sdk,封装里很多复杂操作,使用这个我们就... 目录一、引言二、准备工作2.1 支付宝开放平台入驻与应用创建2.2 密钥生成与配置2.3 安装ali

C#中lock关键字的使用小结

《C#中lock关键字的使用小结》在C#中,lock关键字用于确保当一个线程位于给定实例的代码块中时,其他线程无法访问同一实例的该代码块,下面就来介绍一下lock关键字的使用... 目录使用方式工作原理注意事项示例代码为什么不能lock值类型在C#中,lock关键字用于确保当一个线程位于给定实例的代码块中时

PyQt5 GUI 开发的基础知识

《PyQt5GUI开发的基础知识》Qt是一个跨平台的C++图形用户界面开发框架,支持GUI和非GUI程序开发,本文介绍了使用PyQt5进行界面开发的基础知识,包括创建简单窗口、常用控件、窗口属性设... 目录简介第一个PyQt程序最常用的三个功能模块控件QPushButton(按钮)控件QLable(纯文本

MySQL 强制使用特定索引的操作

《MySQL强制使用特定索引的操作》MySQL可通过FORCEINDEX、USEINDEX等语法强制查询使用特定索引,但优化器可能不采纳,需结合EXPLAIN分析执行计划,避免性能下降,注意版本差异... 目录1. 使用FORCE INDEX语法2. 使用USE INDEX语法3. 使用IGNORE IND

C# $字符串插值的使用

《C#$字符串插值的使用》本文介绍了C#中的字符串插值功能,详细介绍了使用$符号的实现方式,文中通过示例代码介绍的非常详细,需要的朋友们下面随着小编来一起学习学习吧... 目录$ 字符使用方式创建内插字符串包含不同的数据类型控制内插表达式的格式控制内插表达式的对齐方式内插表达式中使用转义序列内插表达式中使用