@Deprecated public class ProfileConfig.DataCapture.Barcode.ReaderParams extends Object
Example Usage: ReaderParams readerParams = profileConfig.dataCapture.barcode.readerParams;
Modifier and Type | Field and Description |
---|---|
ProfileConfig.AIM_TYPE |
aim_type
Deprecated.
This setting is used to change the behavior of the aimer.
|
int |
beam_timer
Deprecated.
Sets the maximum amount of time that the reader remains on (0 - 60,000 ms in increments of 100 ms).
|
int |
different_barcode_timeout
Deprecated.
This setting is used to prevent the scanner from decoding another symbol within this time interval (applicable only when
aim_type = AIM_TYPE.CONTINUOUS_READ).
|
int |
illumination_brightness
Deprecated.
Sets the Illumination Brightness of the Imager.
|
ProfileConfig.ILLUMINATION_MODE |
illumination_mode
Deprecated.
Turns camera illumination on and off.
|
ProfileConfig.INVERSE_1D_MODE |
inverse_1d_mode
Deprecated.
This parameter allows the user to select decoding on inverse 1D bar codes.
|
ProfileConfig.LCD_MODE |
lcd_mode
Deprecated.
Enables or disables LCD mode.
|
ProfileConfig.LINEAR_SECURITY_LEVEL |
linear_security_level
Deprecated.
Sets the number of times a bar code is read to confirm an accurate decode.
|
int |
low_power_timeout
Deprecated.
|
ProfileConfig.PICK_LIST |
picklist
Deprecated.
Allows the imager to decode only the bar code that is directly under the cross-hair/reticle (+) part of the pattern.
|
ProfileConfig.POWER_MODE |
power_mode
Deprecated.
Sets the scanner power mode.
|
int |
same_barcode_timeout
Deprecated.
This setting is used to prevent the scanner driver from decoding the same symbol within this time interval (applicable only when
aim_type = AIM_TYPE.CONTINUOUS_READ).
|
ProfileConfig.VIEWFINDER_MODE |
viewfinder_mode
Deprecated.
Configures the Viewfinder modes supported for camera scanning.
|
public ProfileConfig.AIM_TYPE aim_type
public int same_barcode_timeout
public int different_barcode_timeout
public int beam_timer
Example Usage: int timer = readerParams.beam_timer;
public ProfileConfig.POWER_MODE power_mode
ProfileConfig.POWER_MODE
.
Example Usage: readerParams.power_mode = POWER_MODE.DEFAULT;
public ProfileConfig.LINEAR_SECURITY_LEVEL linear_security_level
ProfileConfig.LINEAR_SECURITY_LEVEL
.
Example Usage: readerParams.linear_security_level = LINEAR_SECURITY_LEVEL.DEFAULT;
public ProfileConfig.PICK_LIST picklist
ProfileConfig.PICK_LIST
.
Example Usage: readerParams.picklist = PICK_LIST.DEFAULT;
public ProfileConfig.ILLUMINATION_MODE illumination_mode
ProfileConfig.ILLUMINATION_MODE
.
Example Usage: readerParams.illumination_mode = ILLUMINATION_MODE.DEFAULT;
public ProfileConfig.LCD_MODE lcd_mode
ProfileConfig.LCD_MODE
.
Example Usage: readerParams.lcd_mode = LCD_MODE.DEFAULT;
@Deprecated public int low_power_timeout
Example Usage: int timeout = readerParams.low_power_timeout;
public int illumination_brightness
Example Usage: int illumination_brightness = readerParams.illumination_brightness;
public ProfileConfig.INVERSE_1D_MODE inverse_1d_mode
ProfileConfig.INVERSE_1D_MODE
.
Example Usage: readerParams.inverse_1d_mode = INVERSE_1D_MODE.AUTO;
public ProfileConfig.VIEWFINDER_MODE viewfinder_mode
ProfileConfig.VIEWFINDER_MODE
.
Example Usage: readerParams.viewfinder_mode = VIEWFINDER_MODE.DEFAULT;