Package com.dsi.ant.plugins.antplus.pcc
Class AntPlusBikePowerPcc.CalculatedWheelSpeedReceiver
java.lang.Object
com.dsi.ant.plugins.antplus.pcc.AntPlusBikePowerPcc.CalculatedWheelSpeedReceiver
- Enclosing class:
- AntPlusBikePowerPcc
Receiver for the CalculatedWheelSpeed event, which is:
The average speed between two received messages calculated from the best available data from the power sensor. Recommended method. This data can only be sent by wheel torque power sensors.
-
Constructor Summary
ConstructorsConstructorDescriptionCalculatedWheelSpeedReceiver
(BigDecimal wheelCircumference) Constructor to set the wheel circumference used to calculate the speed -
Method Summary
Modifier and TypeMethodDescriptionabstract void
onNewCalculatedWheelSpeed
(long estTimestamp, EnumSet<EventFlag> eventFlags, AntPlusBikePowerPcc.DataSource dataSource, BigDecimal calculatedWheelSpeed) Receives the data from a CalculatedWheelSpeed event.
-
Constructor Details
-
CalculatedWheelSpeedReceiver
Constructor to set the wheel circumference used to calculate the speed- Parameters:
wheelCircumference
- The wheel circumference in meters, used to calculate the speed
-
-
Method Details
-
onNewCalculatedWheelSpeed
public abstract void onNewCalculatedWheelSpeed(long estTimestamp, EnumSet<EventFlag> eventFlags, AntPlusBikePowerPcc.DataSource dataSource, BigDecimal calculatedWheelSpeed) Receives the data from a CalculatedWheelSpeed 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.dataSource
- TheAntPlusBikePowerPcc.DataSource
indicating which type of data was used for calculation or if this is a new starting average value. A new starting value could be indicated when starting the plugin, or if reception is lost for too long to guarantee accurate data. If using a new starting value to record data, please use this event as a new starting point in time.calculatedWheelSpeed
- The average speed calculated from sensor data. Units: km/h.
-