CharacteristicNorthPoleAweHeartRateMeasurement
@available(swift 3.1)
@available(iOS 10.0, tvOS 10.0, watchOS 3.0, macOS 10.12, *)
final public class CharacteristicNorthPoleAweHeartRateMeasurement : Characteristic
extension CharacteristicNorthPoleAweHeartRateMeasurement: Hashable
extension CharacteristicNorthPoleAweHeartRateMeasurement: Equatable
BLE AWE Heart Rate Measurement Characteristic
-
Characteristic Name
Declaration
Swift
public static var name: String { get } -
Characteristic UUID
Declaration
Swift
public static var uuidString: String { get } -
Name of the Characteristic
Declaration
Swift
public var name: String { get } -
Characteristic UUID String
Declaration
Swift
public var uuidString: String { get } -
Contact status of sensor
Declaration
Swift
private(set) public var contactStatus: HeartRateContactStatus { get } -
Heart Rate Value
Declaration
Swift
private(set) public var heartRate: Measurement<UnitCadence> { get } -
Energy Expended
Declaration
Swift
private(set) public var energyExpended: Measurement<UnitEnergy>? { get } -
RR-Interval
Declaration
Swift
private(set) public var rrIntervals: [Measurement<UnitDuration>]? { get } -
Creates Heart Rate Meassurement Characteristic
Declaration
Swift
public init(contactStatus: HeartRateContactStatus, heartRate: UInt8, energyExpended: Measurement<UnitEnergy>? = nil, rrIntervals: [Measurement<UnitDuration>]? = nil)Parameters
contactStatusContact status of sensor
heartRateHeart Rate Value
energyExpendedEnergy Expended
rrIntervalsRR-Intervals
-
Decodes Characteristic Data into Characteristic
Declaration
Swift
public class func decode<C>(with data: Data) -> Result<C, BluetoothDecodeError> where C : CharacteristicParameters
dataCharacteristic Data
Return Value
Characteristic Result
-
Encodes the Characteristic into Data
Declaration
Swift
public func encode() -> Result<Data, BluetoothEncodeError>Return Value
Characteristic Data Result
-
Hashes the essential components of this value by feeding them into the given hasher.
Implement this method to conform to the
Hashableprotocol. The components used for hashing must be the same as the components compared in your type’s==operator implementation. Callhasher.combine(_:)with each of these components.Important
Never call
finalize()onhasher. Doing so may become a compile-time error in the future.Declaration
Swift
public func hash(into hasher: inout Hasher)Parameters
hasherThe hasher to use when combining the components of this instance.
-
Returns a Boolean value indicating whether two values are equal.
Equality is the inverse of inequality. For any values
aandb,a == bimplies thata != bisfalse.Declaration
Swift
public static func == (lhs: CharacteristicNorthPoleAweHeartRateMeasurement, rhs: CharacteristicNorthPoleAweHeartRateMeasurement) -> BoolParameters
lhsA value to compare.
rhsAnother value to compare.