CharacteristicIndoorBikeData
@available(swift 3.1)
@available(iOS 10.0, tvOS 10.0, watchOS 3.0, macOS 10.12, *)
final public class CharacteristicIndoorBikeData : Characteristic
extension CharacteristicIndoorBikeData: Hashable
extension CharacteristicIndoorBikeData: Equatable
BLE Indoor Bike Data Characteristic
The Indoor Bike Data characteristic is used to send training-related data to the Client from an indoor bike (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 } -
Instantaneous Speed
Declaration
Swift
private(set) public var instantaneousSpeed: FitnessMachineSpeedType? { get } -
Average Speed
Declaration
Swift
private(set) public var averageSpeed: FitnessMachineSpeedType? { get } -
Instantaneous Cadence
Declaration
Swift
private(set) public var instantaneousCadence: Measurement<UnitCadence>? { get } -
Average Cadence
Declaration
Swift
private(set) public var averageCadence: Measurement<UnitCadence>? { get } -
Total Distance
Declaration
Swift
private(set) public var totalDistance: Measurement<UnitLength>? { get } -
Resistance Level
Declaration
Swift
private(set) public var resistanceLevel: Int16? { get } -
Instantaneous Power
Declaration
Swift
private(set) public var instantaneousPower: FitnessMachinePowerType? { get } -
Average Power
Declaration
Swift
private(set) public var averagePower: FitnessMachinePowerType? { 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(instantaneousSpeed:averageSpeed: instantaneousCadence: averageCadence: totalDistance: resistanceLevel: instantaneousPower: averagePower: energy: heartRate: metabolicEquivalent: time: ) Creates Indoor Bike Data Characteristic
Declaration
Swift
public init(instantaneousSpeed: FitnessMachineSpeedType?, averageSpeed: FitnessMachineSpeedType?, instantaneousCadence: Measurement<UnitCadence>?, averageCadence: Measurement<UnitCadence>?, totalDistance: Measurement<UnitLength>?, resistanceLevel: Int16?, instantaneousPower: FitnessMachinePowerType?, averagePower: FitnessMachinePowerType?, energy: FitnessMachineEnergy, heartRate: UInt8?, metabolicEquivalent: Double?, time: FitnessMachineTime)Parameters
instantaneousSpeedInstantaneous Speed
averageSpeedAverage Speed
instantaneousCadenceInstantaneous Cadence
averageCadenceAverage Cadence
totalDistanceTotal Distance
resistanceLevelInstantaneous Power
instantaneousPowerInstantaneous Power
averagePowerAverage Power
energyEnergy Information
heartRateHeart Rate
metabolicEquivalentMetabolic Equivalent
timeTime Information
-
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: CharacteristicIndoorBikeData, rhs: CharacteristicIndoorBikeData) -> BoolParameters
lhsA value to compare.
rhsAnother value to compare.