BluetoothDeviceDelegate.swift 389 B

12345678910111213141516171819
  1. //
  2. // BluetoothDeviceDelegate.swift
  3. // LoopFollow
  4. //
  5. // Created by Jonas Björkert on 2025-01-04.
  6. // Copyright © 2025 Jon Fawcett. All rights reserved.
  7. //
  8. import Foundation
  9. import CoreBluetooth
  10. protocol BluetoothDeviceDelegate: AnyObject {
  11. func didConnectTo(bluetoothDevice: BluetoothDevice)
  12. func didDisconnectFrom(bluetoothDevice: BluetoothDevice)
  13. func heartBeat()
  14. }