CharacteristicRowerData
@available(swift 3.1)
@available(iOS 10.0, tvOS 10.0, watchOS 3.0, macOS 10.12, *)
final public class CharacteristicRowerData : Characteristic
extension CharacteristicRowerData: Hashable
extension CharacteristicRowerData: Equatable
BLE Rower Data Characteristic
The Rower Data characteristic is used to send training-related data to the Client from a rower (Server).
-
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 }
-
Stroke Rate
Declaration
Swift
private(set) public var strokeRate: Measurement<UnitCadence>? { get }
-
Stroke Count
Declaration
Swift
private(set) public var strokeCount: UInt16? { get }
-
Average Stroke Rate
Declaration
Swift
private(set) public var averageStrokeRate: Measurement<UnitCadence>? { get }
-
Total Distance
Declaration
Swift
private(set) public var totalDistance: Measurement<UnitLength>? { get }
-
Instantaneous Pace
Declaration
Swift
private(set) public var instantaneousPace: Measurement<UnitDuration>? { get }
-
Average Pace
Declaration
Swift
private(set) public var averagePace: Measurement<UnitDuration>? { get }
-
Instantaneous Power
Declaration
Swift
private(set) public var instantaneousPower: FitnessMachinePowerType? { get }
-
Average Power
Declaration
Swift
private(set) public var averagePower: FitnessMachinePowerType? { get }
-
Resistance Level
Declaration
Swift
private(set) public var resistanceLevel: Int16? { get }
-
Energy Information
Declaration
Swift
private(set) public var energy: FitnessMachineEnergy { get }
-
Heart Rate
Declaration
Swift
private(set) public var heartRate: Measurement<UnitCadence>? { get }
-
Metabolic Equivalent
Declaration
Swift
private(set) public var metabolicEquivalent: Double? { get }
-
Time Information
Declaration
Swift
private(set) public var time: FitnessMachineTime { get }
-
init(strokeRate:
strokeCount: averageStrokeRate: totalDistance: instantaneousPace: averagePace: instantaneousPower: averagePower: resistanceLevel: energy: heartRate: metabolicEquivalent: time: ) Creates Rower Data Characteristic
Declaration
Swift
public init(strokeRate: Measurement<UnitCadence>?, strokeCount: UInt16?, averageStrokeRate: Measurement<UnitCadence>?, totalDistance: Measurement<UnitLength>?, instantaneousPace: Measurement<UnitDuration>?, averagePace: Measurement<UnitDuration>?, instantaneousPower: FitnessMachinePowerType?, averagePower: FitnessMachinePowerType?, resistanceLevel: Int16?, energy: FitnessMachineEnergy, heartRate: UInt8?, metabolicEquivalent: Double?, time: FitnessMachineTime)
Parameters
strokeRate
Stroke Rate
strokeCount
Stroke Count
averageStrokeRate
Average Stroke Rate
totalDistance
Total Distance
instantaneousPace
Instantaneous Pace
averagePace
Average Pace
instantaneousPower
Instantaneous Power
averagePower
Average Power
resistanceLevel
Resistance Level
energy
Energy Information
heartRate
Heart Rate
metabolicEquivalent
Metabolic Equivalent
time
Time Information
-
Decodes Characteristic Data into Characteristic
Declaration
Swift
public class func decode<C>(with data: Data) -> Result<C, BluetoothDecodeError> where C : Characteristic
Parameters
data
Characteristic 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
Hashable
protocol. 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
hasher
The 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
a
andb
,a == b
implies thata != b
isfalse
.Declaration
Swift
public static func == (lhs: CharacteristicRowerData, rhs: CharacteristicRowerData) -> Bool
Parameters
lhs
A value to compare.
rhs
Another value to compare.