Skip to main content

VisionBottomLedStatusEnum

enum class VisionBottomLedStatusEnum

Description: The state enumeration class of the visual downlight

    enum class VisionBottomLedStatusEnum(var value: Int) {

/**
* Turn off the down view LED
*/
CLOSE(0),

/**
* Turn on down view LED
*/
OPEN(1),

/**
* automatic control
*/
AUTO(2),

/**
* Flashing pattern 1
*/
TWINKLE1(3),

/**
* Flashing pattern 2
*/
TWINKLE2(4);
}