BluetoothDeviceDelegate.swift 307 B

123456789101112131415
  1. // LoopFollow
  2. // BluetoothDeviceDelegate.swift
  3. // Created by Jonas Björkert.
  4. import CoreBluetooth
  5. import Foundation
  6. protocol BluetoothDeviceDelegate: AnyObject {
  7. func didConnectTo(bluetoothDevice: BluetoothDevice)
  8. func didDisconnectFrom(bluetoothDevice: BluetoothDevice)
  9. func heartBeat()
  10. }