Ionic/Cordova Honeywell Scanner Simplified Plugin for the built-in barcodes scanner.
Ionic: ionic cordova plugin add cordova-honeywell-scanner-simplified
Cordova: cordova plugin add cordova-honeywell-scanner-simplified
Honeywell EDA50 - Android 4.4 and 7 (confirmed by dorumrr)
Honeywell EDA51 Android 8.1.0 (confirmed by jalte)
Honeywell EDA51 Android 10 (confirmed by donchurru)
Honeywell CK65 Android 9.0 (confirmed by katsandres, donchurru)
Honeywell CT50 Android 6.0.1 (confirmed by pklaes)
Honeywell CT60 - Android 8.1.0 (confirmed by andreicocari)
Honeywell CT60 - Android 9.0 (confirmed by kulkarniswapnil)
Please notify if you have tested with other Honeywell devices!
Call .listen
to capture scans using the device's physical buttons. Call .scan
within your application to enable a "software" triggerd scan. You can disable the capturing by calling .release
and enable it back by calling .claim
followed by .listen
method. You can also simulate a softare button to enable the reader behaving in the same way as the hardware scan button(s).
TIP: In Ionic, in order to access the window
property, you may need to add window: any = window
just above your constructor.
window.plugins.honeywell.listen(function(data) {
console.log('Scanned: ' + data);
}, function (error) => {
console.log('Error occured: ' + error);
});
function disable() {
window.plugins.honeywell.release();
}
function enable() {
window.plugins.honeywell.claim(function(){
window.plugins.honeywell.listen(function(data) {
console.log('Scanned: ' + data);
}, function (error) => {
console.log('Error occured: ' + error);
});
});
}
Ionic JS/TS methods:
scanPressed () {
this.window.plugins.honeywell.softwareTriggerStart(function(data) {
console.log('Software scan: ' + data);
}, function(error) {
console.log('Error occured: ' + error);
});
}
scanReleased () {
this.window.plugins.honeywell.softwareTriggerStop();
}
...and the HTML:
<button (touchstart)="scanPressed()" (touchend)="scanReleased()">SCAN</button>
For a quick implementation, you can check out the Ionic Test Application here