BluetoothDeviceDelegate.swift 276 B

1234567891011121314
  1. // LoopFollow
  2. // BluetoothDeviceDelegate.swift
  3. import CoreBluetooth
  4. import Foundation
  5. protocol BluetoothDeviceDelegate: AnyObject {
  6. func didConnectTo(bluetoothDevice: BluetoothDevice)
  7. func didDisconnectFrom(bluetoothDevice: BluetoothDevice)
  8. func heartBeat()
  9. }