BluetoothDeviceDelegate.swift 321 B

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