Skip to main content

WhiteBalanceEnum

enum class WhiteBalanceEnum

Description: White balance type

enum class WhiteBalanceEnum(var value: Int) {
/**
* automatic
*/
AUTO(0),

/**
* daylight
*/
SUNNY(1),

/**
* cloudy day
*/
CLOUDY(2),

/**
* Incandescent lamp
*/
INCANDESCENT(3),

/**
* Fluorescent lights
*/
FLUORESCENT(4),

/**
* Custom Custom color temperature, valid when Mode is set to Custom, range 2000 - 10000, step size is 100
*/
CUSTOM(5),
UNKNOWN(0xFF);
}