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

相关文章

HarmonyOS学习(七)——UI(五)常用布局总结

自适应布局 1.1、线性布局(LinearLayout) 通过线性容器Row和Column实现线性布局。Column容器内的子组件按照垂直方向排列,Row组件中的子组件按照水平方向排列。 属性说明space通过space参数设置主轴上子组件的间距,达到各子组件在排列上的等间距效果alignItems设置子组件在交叉轴上的对齐方式,且在各类尺寸屏幕上表现一致,其中交叉轴为垂直时,取值为Vert

Ilya-AI分享的他在OpenAI学习到的15个提示工程技巧

Ilya(不是本人,claude AI)在社交媒体上分享了他在OpenAI学习到的15个Prompt撰写技巧。 以下是详细的内容: 提示精确化:在编写提示时,力求表达清晰准确。清楚地阐述任务需求和概念定义至关重要。例:不用"分析文本",而用"判断这段话的情感倾向:积极、消极还是中性"。 快速迭代:善于快速连续调整提示。熟练的提示工程师能够灵活地进行多轮优化。例:从"总结文章"到"用

Security OAuth2 单点登录流程

单点登录(英语:Single sign-on,缩写为 SSO),又译为单一签入,一种对于许多相互关连,但是又是各自独立的软件系统,提供访问控制的属性。当拥有这项属性时,当用户登录时,就可以获取所有系统的访问权限,不用对每个单一系统都逐一登录。这项功能通常是以轻型目录访问协议(LDAP)来实现,在服务器上会将用户信息存储到LDAP数据库中。相同的,单一注销(single sign-off)就是指

Spring Security基于数据库验证流程详解

Spring Security 校验流程图 相关解释说明(认真看哦) AbstractAuthenticationProcessingFilter 抽象类 /*** 调用 #requiresAuthentication(HttpServletRequest, HttpServletResponse) 决定是否需要进行验证操作。* 如果需要验证,则会调用 #attemptAuthentica

这15个Vue指令,让你的项目开发爽到爆

1. V-Hotkey 仓库地址: github.com/Dafrok/v-ho… Demo: 戳这里 https://dafrok.github.io/v-hotkey 安装: npm install --save v-hotkey 这个指令可以给组件绑定一个或多个快捷键。你想要通过按下 Escape 键后隐藏某个组件,按住 Control 和回车键再显示它吗?小菜一碟: <template

中文分词jieba库的使用与实景应用(一)

知识星球:https://articles.zsxq.com/id_fxvgc803qmr2.html 目录 一.定义: 精确模式(默认模式): 全模式: 搜索引擎模式: paddle 模式(基于深度学习的分词模式): 二 自定义词典 三.文本解析   调整词出现的频率 四. 关键词提取 A. 基于TF-IDF算法的关键词提取 B. 基于TextRank算法的关键词提取

Hadoop企业开发案例调优场景

需求 (1)需求:从1G数据中,统计每个单词出现次数。服务器3台,每台配置4G内存,4核CPU,4线程。 (2)需求分析: 1G / 128m = 8个MapTask;1个ReduceTask;1个mrAppMaster 平均每个节点运行10个 / 3台 ≈ 3个任务(4    3    3) HDFS参数调优 (1)修改:hadoop-env.sh export HDFS_NAMENOD

使用SecondaryNameNode恢复NameNode的数据

1)需求: NameNode进程挂了并且存储的数据也丢失了,如何恢复NameNode 此种方式恢复的数据可能存在小部分数据的丢失。 2)故障模拟 (1)kill -9 NameNode进程 [lytfly@hadoop102 current]$ kill -9 19886 (2)删除NameNode存储的数据(/opt/module/hadoop-3.1.4/data/tmp/dfs/na

Hadoop数据压缩使用介绍

一、压缩原则 (1)运算密集型的Job,少用压缩 (2)IO密集型的Job,多用压缩 二、压缩算法比较 三、压缩位置选择 四、压缩参数配置 1)为了支持多种压缩/解压缩算法,Hadoop引入了编码/解码器 2)要在Hadoop中启用压缩,可以配置如下参数

【前端学习】AntV G6-08 深入图形与图形分组、自定义节点、节点动画(下)

【课程链接】 AntV G6:深入图形与图形分组、自定义节点、节点动画(下)_哔哩哔哩_bilibili 本章十吾老师讲解了一个复杂的自定义节点中,应该怎样去计算和绘制图形,如何给一个图形制作不间断的动画,以及在鼠标事件之后产生动画。(有点难,需要好好理解) <!DOCTYPE html><html><head><meta charset="UTF-8"><title>06