Difference between revisions of "Honeywell Scanner"

From ISoft Wiki
Jump to navigationJump to search
(Redirected page to Configuring a barcode scanner)
Tag: New redirect
 
Line 1: Line 1:
== Compatibility Notes ==
#REDIRECT [[Configuring a barcode scanner]]
Please update the Chrome browser on the Honeywell to Chrome v101 so that the Teardown app is sized correctly. It currently ships with Chrome v70. -JW 2022-05-18
 
== Setting up a Honeywell Scanner ==
ScanPal EDA71 
https://www.honeywellaidc.com/products/computer-devices/tablet/scanpaleda71
 
These are the screens you set through to set up the honeywell device
 
Settings -> Honeywell Settings -> Scan Settings -> Internal Scanner -> Default profile -> Data Processing Settings
 
 
Wedge = checked
 
Wedge Method = Keyboard
 
no Prefix
 
no Suffix
 
Wedge as keys = empty input
 
[[File:Flowchart_of_settings.jpg|800px|thumb|center|Honeywell Setting Flowchart]]
 
<br />
 
 
 
== Enterprise LX Honeywell config info ==
 
A global database setting "Scanner Mode (ambleMode,honeywell)" needs to be set to "honeywell"
 
The current default is ambleMode which may change in the near future.
The following query will let you check on the setting.  Note: A user has to have logged into an lx app before the default settings are present.
 
<syntaxhighlight lang="sql">
SELECT
  `globalsettingvalue`.`settingid`
    , `setting`.`location`
    , `setting`.`name`
    , `globalsettingvalue`.`value`
    , `setting`.`defaultvalue`
    , `setting`.`scope`
    , `setting`.`settingtype`
    , `value`=`defaultvalue` AS isdefault
FROM
    `globalsettingvalue`
    INNER JOIN `setting`
        ON (`globalsettingvalue`.`settingid` = `setting`.`settingid`)
WHERE (`setting`.`name` = 'Scanner Mode (ambleMode,honeywell)');
</syntaxhighlight>

Latest revision as of 10:33, 21 August 2024