LEDStatusEnum
enum class LEDStatusEnum
Description: led light status
enum class LEDStatusEnum(var value: Int) {
/**
* Front and rear arm lights are off
*/
ALL_OFF(0),
/**
* The front wall lights are on, and the rear arm lights are off.
*/
FRONT_ONLY(1),
/**
* Forearm light off, rear arm light on.
*/
BACK_ONLY(2),
/**
* GPS front and rear arm lights are on
*/
ALL_ON(3),
/**
* Camera light flashes
*/
TAKE_PHOTO_GLINT(4),
/**
* Video light flashes
*/
START_RECORD_GLINT(8)
}