Interface AntPlusCommonPcc.IManufacturerSpecificDataReceiver
- Enclosing class:
- AntPlusCommonPcc
public static interface AntPlusCommonPcc.IManufacturerSpecificDataReceiver
Receiver for the ManufacturerSpecificData event, which is:
Manufacturer specific data.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
onNewManufacturerSpecificData
(long estTimestamp, EnumSet<EventFlag> eventFlags, byte[] rawDataBytes) Receives the data from a ManufacturerSpecificData event.
-
Method Details
-
onNewManufacturerSpecificData
void onNewManufacturerSpecificData(long estTimestamp, EnumSet<EventFlag> eventFlags, byte[] rawDataBytes) Receives the data from a ManufacturerSpecificData 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 time records.eventFlags
- Informational flags about the event.rawDataBytes
- The raw eight bytes which make up the manufacturer specific page.
-