Skip to content

Instantly share code, notes, and snippets.

@iosdevie
Created May 26, 2021 08:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iosdevie/42b56482a918216e387c8a359950b71e to your computer and use it in GitHub Desktop.
Save iosdevie/42b56482a918216e387c8a359950b71e to your computer and use it in GitHub Desktop.
Initialize the Bluetooth Manager
var centralManager: CBCentralManager?
var peripheral: CBPeripheral?
override func viewDidLoad() {
super.viewDidLoad()
centralManager = CBCentralManager(delegate: self, queue: nil)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment