EnhancedTapSettings
public class EnhancedTapSettings : Codable, Equatable
The setting at which the user wants the mobile phone to interact with BluPOINT devices.
-
Declaration
Swift
public static func == (lhs: EnhancedTapSettings, rhs: EnhancedTapSettings) -> Bool
-
If enhanced tap settings are enabled or not.
Declaration
Swift
public var enabled: Bool
-
The minimum power required for enhanced tap to work when application is in background in a iOS device.
Declaration
Swift
public var iosBackgroundPower: Int
-
The minimum power required for enhanced tap to work when application is in foreground in a iOS device.
Declaration
Swift
public var iosForegroundPower: Int
-
The minimum power required for enhanced tap to work in a android device.
Declaration
Swift
public var androidPower: Int
-
Declaration
Swift
public init(enabled: Bool, iosBackgroundPower: Int, iosForegroundPower: Int, androidPower: Int)