Package com.dsi.ant.plugins.antplus.pcc
Interface AntPlusBikePowerPcc.ICalibrationMessageReceiver
- Enclosing class:
- AntPlusBikePowerPcc
public static interface AntPlusBikePowerPcc.ICalibrationMessageReceiver
Receiver for the CalibrationMessage event, which is:
Response data from the power meter when calibration occurs (either by request or automatically performed by the power meter) or is confering current calibration status. This data is optional and may not be sent by all sensors.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
onNewCalibrationMessage
(long estTimestamp, EnumSet<EventFlag> eventFlags, AntPlusBikePowerPcc.CalibrationMessage calibrationMessage) Receives the data from a CalibrationMessage event.
-
Method Details
-
onNewCalibrationMessage
void onNewCalibrationMessage(long estTimestamp, EnumSet<EventFlag> eventFlags, AntPlusBikePowerPcc.CalibrationMessage calibrationMessage) Receives the data from a CalibrationMessage 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.calibrationMessage
- TheAntPlusBikePowerPcc.CalibrationMessage
sent by the power meter.
-