Skip to content

Commit

Permalink
Test scanner selection
Browse files Browse the repository at this point in the history
  • Loading branch information
ltrudu committed Sep 19, 2022
1 parent ca262e1 commit a0fcf90
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package com.zebra.datawedgeprofileenums;

public enum SC_E_AIM_MODE {
ON("1"),
OFF("0");
ON("on"),
OFF("off");

private String enumString;
private SC_E_AIM_MODE(String confName)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -644,6 +644,7 @@ public Bundle getBarcodePluginBundleForSwitchParams() throws Exception {
// Use this for Datawedge < 6.7
//barcodeProps.putString("scanner_selection", "AUTO");
// Use this for Datawedge >= 6.7
barcodeProps.putString("scanner_selection",scanner_selection_by_identifier.toString());
barcodeProps.putString("scanner_selection_by_identifier",scanner_selection_by_identifier.toString());


Expand Down

0 comments on commit a0fcf90

Please sign in to comment.