Skip to main content

RcButtonStateEnum

enum class RcButtonStateEnum

Description: Remote control button status enumeration class

    enum class RcButtonStateEnum(val value: Int) {
/**
* unknown
*/
UNKNOWN(0),

/**
* scroll
*/
ROLL(1),

/**
* click
*/
CLICK(2),

/**
* Press
*/
LONG_PRESS(3),

/**
* Double click
*/
DOUBLE_CLICK(4);
}