Advertisement
RyuuzakiJulio

Bluetooth Connect/Disconnect Test

Apr 13th, 2019
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Swift 2.44 KB | None | 0 0
  1. import Cocoa
  2. import IOBluetooth
  3.  
  4. class BluetoothDevices {
  5.    func pairedDevices() {
  6.       guard let devices = IOBluetoothDevice.pairedDevices() else {
  7.          print("No devices")
  8.          return
  9.       }
  10.  
  11.       for item in devices {
  12.          if let device = item as? IOBluetoothDevice {
  13.             print("Name: \(device.name ?? "No Name")")
  14.             print("Paired?: \(device.isPaired())")
  15.             print("Connected: \(device.isConnected())")
  16.             print(device.addressString ?? "No address")
  17.             print("-------------------")
  18.          }
  19.       }
  20.    }
  21.  
  22.    func getDevice(by name: String) -> IOBluetoothDevice? {
  23.       guard let devices = IOBluetoothDevice.pairedDevices() else {
  24.          print("No devices")
  25.          return nil
  26.       }
  27.       for item in devices {
  28.          if let device = item as? IOBluetoothDevice {
  29.             if let deviceName = device.name {
  30.                if deviceName == name {
  31.                   let foundDevice = device
  32.                   return foundDevice
  33.                }
  34.             }
  35.          }
  36.       }
  37.       return nil
  38.    }
  39. }
  40.  
  41.  
  42. class ViewController: NSViewController {
  43.  
  44.    var selectedDevice: IOBluetoothDevice?
  45.  
  46.    let btn = NSButton(frame: NSRect(x: 0, y: 0, width: 200, height: 200))
  47.    let btn2 = NSButton(frame: NSRect(x: 201, y: 0, width: 200, height: 200))
  48.  
  49.  
  50.    override func viewDidLoad() {
  51.       super.viewDidLoad()
  52.  
  53.       BluetoothDevices().pairedDevices()
  54.       // Try to select Sony Bluetooth Headphones.
  55.       selectedDevice = BluetoothDevices().getDevice(by: "WH-1000XM3")
  56.  
  57.       if selectedDevice != nil {
  58.          print("Device Found and Selected")
  59.       }
  60.  
  61.       btn.title = "Disconnect"
  62.       btn.target = self
  63.       btn.action = #selector(disconnectMe)
  64.       view.addSubview(btn)
  65.  
  66.       btn2.title = "Connect"
  67.       btn2.target = self
  68.       btn2.action = #selector(connectMe)
  69.       view.addSubview(btn2)
  70.    }
  71.  
  72.    @objc func disconnectMe() {
  73.       print("Trying to disconnect \(selectedDevice?.name ?? "No name")")
  74.       if let device2Disconnect = selectedDevice {
  75.          device2Disconnect.closeConnection()
  76.       }
  77.    }
  78.  
  79.    @objc func connectMe() {
  80.       print("Trying to connect \(selectedDevice?.name ?? "No name")")
  81.       if let device2Connect = selectedDevice {
  82.          device2Connect.openConnection()
  83.       }
  84.    }
  85.  
  86.    override var representedObject: Any? {
  87.       didSet {
  88.          // Update the view, if already loaded.
  89.       }
  90.    }
  91. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement