GithubHelp home page GithubHelp logo

blemanageswift's Introduction

BleManageSwift


GitHub license CocoaPods Compatible Platform
This is BleManageSwift

new version 1.0.7

*目前不支持oc版本

非常感谢 cesarferreira https://github.com/cesarferreira/SwiftEventBus/commits?author=cesarferreira 提供的 SwiftEventBus

快速度开发蓝牙工具

安装介绍 只能支持 ios10.0以上版本

--------------------------------------------------------------------------------
 🎉  Congrats

 🚀  BleManageSwift (current version) successfully published
 📅  September 23rd, 01:51
 🌎  https://cocoapods.org/pods/BleManageSwift
 👍  Tell your friends!
--------------------------------------------------------------------------------

Installation Guide for BleManageSwift

target 'MyApp' do
  pod 'BleManageSwift', '~> current version'
end

如果你使用的时候报以下的错误

[!] CocoaPods could not find compatible versions for pod "BleManageSwift":
  In Podfile:
    BleManageSwift (~> current version)

None of your spec sources contain a spec satisfying the dependency: `BleManageSwift (~> current version)`.

You have either:
 * out-of-date source repos which you can update with `pod repo update` or with `pod install --repo-update`.
 * mistyped the name or version.
 * not added the source repo that hosts the Podspec to your Podfile.

运行 pod repo update 或者 pod install --repo-update

Then run a pod install inside your terminal, or from CocoaPods.app.

Alternatively to give it a test run, run the command:

pod try BleManageSwift

Update 8/25 2022

version 1.0.7

  1. modify demo can't send data

  2. add send data button

Update 2020/9/29

version 1.0.7

  1. Fixed unable to read data by multiple devices。
  2. Data reading was received by list

更新 2020/9/25

version 1.0.6

update BleManange class

1.0.6 version

update Bluetooth operation method

  1. Bluetooth scan
    BleManage.shared.scan()
  1. stop BleManage scan
    BleManage.shared.stop()
  1. Connect Bluetooth
//use mdoel is BleModel
BleManage.shared.connect(model)
  1. Disconnect Bluetooth
//use mdoel is BleModel
BleManage.shared.discon(model)
  1. Disconnect All Bluetooth
//use mdoel is BleModel
BleManage.shared.disall(model)
  1. open Bluetooth nofity
//use mdoel is BleModel
//current CBCharacteristic
//open -> true,false
BleManage.shared.nofity(_ model:BleModel?, characteristic: CBCharacteristic?,open:Bool)
  1. read Bluetooth value
//use mdoel is BleModel
//current CBCharacteristic
BleManage.shared.read(_ model:BleModel?,characteristic: CBCharacteristic?)
  1. write Bluetooth value
//write String type value
//current CBCharacteristic
//current CBPeripheral

BleManage.shared.writes(_ value: String?, for characteristic: CBCharacteristic?, periperalData periperal: CBPeripheral?)

//write Data type value
//current CBCharacteristic
//current CBPeripheral

BleManage.shared.writes(_ value: Data?, for characteristic: CBCharacteristic?, periperalData periperal: CBPeripheral?)

更新 2020/9/23

马上进行维护

版本 1.0.5 delete don't need BleExtension 删除不要的额外扩展

版本更改为v1.0.3 v1.0.4

版本1.0.1紧急处理了不能调用方法的bug

版本1.0.0初始版本

相应的功能如下:

  1. 能够快速的连接多台蓝牙设备
  2. 代码相当的简单使用起来方便
  3. 支持蓝牙扫描,可以任意自定义自己想要的连接

使用介绍

!代码在使用过程中出现bug属于正常现象,我会经常的维护此库

使用也非常的简单如果你觉得源代码写的不好可以参与我的代码更改!欢迎你的加入

效果图

image

image

image

首先导入

import BleManageSwift

开始扫描设备

    override func viewDidLoad() {
        super.viewDidLoad()
        BleManage.shared.startScan()
    }
    

停止扫描设备

    BleManage.shared.stopScan()

使用扫描过来的设备

    BleEventBus.onMainThread(self, name: "bleEvent"){
            result in
            self.refresh.endRefreshing()
            let model = result?.object as! BleModel
            //可以自定义判断蓝牙为空的时候不能添加进去直接排除
            if model.name != nil && model.name != ""{
                self.changeTableView(model: model)
            }
        }

连接蓝牙设备

// model为蓝牙设备的model model:BleModel
BleManage.shared.connect(model)

BleEventBus 介绍

BleEventBus 使用非常简单 想要的数据可以通过任何一个界面去调用

发送数据为 名称+任意的数据类型

BleEventBus.post("xxxx",sender:Any)

接收数据 name为你post的名称

 BleEventBus.onMainThread(self, name: "xxxx"){
    result in
    //执行你的操作
 }

取消使用的时候

override func viewWillDisappear(_ animated: Bool) {
    super.viewWillDisappear(animated)
    BleEventBus.unregister(self)
}

或者

override func viewWillDisappear(_ animated: Bool) {
    super.viewWillDisappear(animated)
    BleEventBus.unregister("xxxx")
}

BleManage 接收类型介绍

发送设备连接成功的事件

v1.0.5支持

BleEventBus.post("connectEvent", sender: self.successList)

发送扫描设备的事件

BleEventBus.post("bleEvent",sender: model)

断开蓝牙连接的事件

BleEventBus.post("disconnectEvent",sender: model)

蓝牙连接中出现错误事件 这个为字符串类型

BleEventBus.post("connectBleFailEvent",sender: "xxx")

蓝牙读取数据错误事件

BleEventBus.post("readValueError",sender: "xxxx")

蓝牙写入数据错误

BleEventBus.post("writeValueError",sender: "write data (error)")

接收数据的时候按照去接收

BleEventBus.onMainThread(self, name: "bleEvent"){
    result in

}

blemanageswift's People

Contributors

radianceltd avatar ardwang avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.