Package com.dsi.ant.plugins.antplus.pcc
Interface AntPlusFitnessEquipmentPcc.ICalibrationInProgressReceiver
- Enclosing class:
- AntPlusFitnessEquipmentPcc
public static interface AntPlusFitnessEquipmentPcc.ICalibrationInProgressReceiver
Receiver for the CalibrationInProgress event, which is:
Response from the fitness equipment while it completes calibration. This is an optional data page as many fitness equipment units do not require calibration.
- Since:
- 2.1.8
-
Method Summary
Modifier and TypeMethodDescriptionvoid
onNewCalibrationInProgress
(long estTimestamp, EnumSet<EventFlag> eventFlags, AntPlusFitnessEquipmentPcc.CalibrationInProgress calibrationInProgress) Receives the data from a CalibrationInProgress event.
-
Method Details
-
onNewCalibrationInProgress
void onNewCalibrationInProgress(long estTimestamp, EnumSet<EventFlag> eventFlags, AntPlusFitnessEquipmentPcc.CalibrationInProgress calibrationInProgress) Receives the data from a CalibrationInProgress 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.calibrationInProgress
- Sent from the fitness equipment while a calibration is being performed. This is an optional page that may be interpreted by displays to improve the user experience during calibration.
-