ArchieGoodwin / BLEDiscovery

BLE advertising/publishing utility with ability to exchange info between iOS devices

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

BLE Discovery swift package

Detect BLE devices with the same BLE ID (UUID string), exchange information between BLE devices

Usage

Start discovering contacts

To start discover BLE contacts use:

let discovery = BLEDiscovery(uuid: "UUID string")
self.discovery.startDiscovering { user in
                    
}

To advertise your own string info:

let discovery = BLEDiscovery()
discovery.startAdvertising(with: user_string_info)

About

BLE advertising/publishing utility with ability to exchange info between iOS devices

License:MIT License


Languages

Language:Swift 100.0%