Interface AntPlusCommonPcc.IManufacturerIdentificationReceiver
- Enclosing class:
- AntPlusCommonPcc
public static interface AntPlusCommonPcc.IManufacturerIdentificationReceiver
Receiver for the ManufacturerIdentification event, which is:
Information about the manufacturer and hardware.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
onNewManufacturerIdentification
(long estTimestamp, EnumSet<EventFlag> eventFlags, int hardwareRevision, int manufacturerID, int modelNumber) Receives the data from a ManufacturerIdentification event.
-
Method Details
-
onNewManufacturerIdentification
void onNewManufacturerIdentification(long estTimestamp, EnumSet<EventFlag> eventFlags, int hardwareRevision, int manufacturerID, int modelNumber) Receives the data from a ManufacturerIdentification 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.hardwareRevision
- Manufacturer defined. -1 = 'Not available'.manufacturerID
- ANT+ Alliance managed manufacturer identifier.modelNumber
- Manufacturer defined. -1 = 'Not available'.
-