TempTrack-iOS/TempTrack/Bluetooth/DeviceManagerDelegate.swift
2023-07-02 17:29:39 +02:00

11 lines
232 B
Swift

import Foundation
protocol DeviceManagerDelegate: AnyObject {
func deviceManager(shouldConnectToDevice: Bool)
func deviceManager(didReceive data: Data)
func deviceManager(didChangeState state: DeviceState)
}