Back to project page 3DR-Services-Library.
The source code is released under:
Apache License
If you think the Android project 3DR-Services-Library listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.ox3dr.services.android.lib.drone.event; /*ww w .j a va 2s . c o m*/ /** * Holds handles used to retrieve additional information broadcast along a drone event. */ public class Extra { private static final String CLAZZ_NAME = Extra.class.getName(); public static final String EXTRA_CALIBRATION_IMU_MESSAGE = CLAZZ_NAME + ".CALIBRATION_IMU_MESSAGE"; public static final String EXTRA_PARAMETERS_COUNT = CLAZZ_NAME + ".PARAMETERS_COUNT"; public static final String EXTRA_PARAMETER_INDEX = CLAZZ_NAME + ".PARAMETER_INDEX"; }