Package com.dsi.ant.plugins.antplus.pcc
Interface AntPlusBikePowerPcc.IAutoZeroStatusReceiver
- Enclosing class:
- AntPlusBikePowerPcc
public static interface AntPlusBikePowerPcc.IAutoZeroStatusReceiver
Receiver for the AutoZeroStatus event, which is:
The updated Auto Zero status of the sensor.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
onNewAutoZeroStatus
(long estTimestamp, EnumSet<EventFlag> eventFlags, AntPlusBikePowerPcc.AutoZeroStatus autoZeroStatus) Receives the data from a AutoZeroStatus event.
-
Method Details
-
onNewAutoZeroStatus
void onNewAutoZeroStatus(long estTimestamp, EnumSet<EventFlag> eventFlags, AntPlusBikePowerPcc.AutoZeroStatus autoZeroStatus) Receives the data from a AutoZeroStatus 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.autoZeroStatus
- TheAntPlusBikePowerPcc.AutoZeroStatus
currently known for the power meter, aggregated from multiple calibration page types.
-