Interface AntPlusFitnessEquipmentPcc.IRowerDataReceiver

Enclosing class:
AntPlusFitnessEquipmentPcc

public static interface AntPlusFitnessEquipmentPcc.IRowerDataReceiver
Receiver for the RowerData event, which is: The data specific to bikes. This data is optional and may not be sent by all fitness equipment.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    onNewRowerData(long estTimestamp, EnumSet<EventFlag> eventFlags, long cumulativeStrokes, int instantaneousCadence, int instantaneousPower)
    Receives the data from a RowerData event.
  • Method Details

    • onNewRowerData

      void onNewRowerData(long estTimestamp, EnumSet<EventFlag> eventFlags, long cumulativeStrokes, int instantaneousCadence, int instantaneousPower)
      Receives the data from a RowerData event.
      Parameters:
      estTimestamp - The estimated timestamp of when this event was triggered. Useful for correlating multiple events and determining when data was sent for more accurate data records.
      eventFlags - Informational flags about the event.
      cumulativeStrokes - Total number of strokes taken from the time the plugin connected to the fitness equipment. Units: strokes. Rollover: Every ~9 quintillion strokes.
      instantaneousCadence - Instantaneous cadence valid for display. Units: strokes/min.
      instantaneousPower - Instantaneous power valid for display. Units: Watts.