BeaconKit

1.0.6

iOS Beacon framework using BTLE
igor-makarov/BeaconKit

What's New

Support Swift 4.0 and 4.2

2020-06-18T15:04:45Z

Turns out I haven't made proper releases out of tags, so I'm making one now.

BeaconKit Build Status Current Version

Beacon detection framework using CoreBluetooth written in Swift

TL;DR

This is a framework that wraps around CoreBluetooth and detects beacons of different types.

Tested to compile with Swift 4.0 & 4.2 for iOS 9.0 & macOS 10.12

The currently supported types are: Eddystone-UID, Eddystone-URL, AltBeacon, iBeacon.

iBeacon detection is only available for macOS. It's not possible to detect iBeacons using CoreBluetooth on iOS (see this explanation for more info).

Only foreground operation is supported, but I plan on adding background detection of Eddystones (it's not possible to detect AltBeacons in the background).

Usage

Activating:

BeaconScanner.shared.delegate = self
BeaconScanner.shared.start()

If you want to change the beacons detected, assign to recognizedBeaconTypes like so:

BeaconScanner.shared.recognizedBeaconTypes = [EddystoneUidBeacon.self, EddystoneUrlBeacon.self, AltBeacon.self] 

Deactivating:

BeaconScanner.shared.stop()

Supported Beacon Types

  • Eddystone-UID
  • Eddystone-URL
  • AltBeacon (foreground only on iOS)
  • iBeacon (macOS only)

Known Unsupported Beacon Types

  • Eddystone-TLM (not an actual beacon)

Description

  • Swift Tools 4.0.0
View More Packages from this Author

Dependencies

  • None
Last updated: Wed Mar 13 2024 10:47:18 GMT-0900 (Hawaii-Aleutian Daylight Time)