1.4.3 • Published 5 years ago

cordova-honeywell-scanner-simplified v1.4.3

Weekly downloads
18
License
MIT
Repository
github
Last release
5 years ago

cordova-honeywell-scanner-simplified

Ionic/Cordova Honeywell Scanner Simplified Plugin for the built-in barcodes scanner.

Install

Ionic: ionic cordova plugin add cordova-honeywell-scanner-simplified

Cordova: cordova plugin add cordova-honeywell-scanner-simplified

Tested successfully with

  • Honeywell ScanPal EDA50 - Android 4.4 and 7 (confirmed by dorumrr)

  • Honeywell CT60 - Android 8.1.0 (confirmed by andreicocari)

  • Honeywell CT50 Android 6.0.1 (confirmed by pklaes)

  • Honeywell EDA51 Android 8.1.0 (confirmed by jalte)

Please notify if you have tested with other Honeywell devices!

Usage

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.

Enable listener

window.plugins.honeywell.listen(function(data) {
  console.log('Scanned: ' + data);
}, function (error) => {
  console.log('Error occured: ' + error);
});

Disable listener

function disable() {
  window.plugins.honeywell.release();
}

Re-enable listener after being disabled (.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);
    });
  });
}

Scan button simulation to enable readings from within your application

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


HELP WANTED FOR BETTER DOCUMENTATION

I aim to have better documentation for this project (current readme.MD), so any sugestions are more than welcome!

1.4.3

5 years ago

1.4.2

5 years ago

1.4.1

5 years ago

1.4.0

5 years ago

1.3.0

5 years ago

1.2.1

5 years ago

1.2.0

5 years ago

1.1.2

5 years ago

1.1.1

6 years ago

1.1.0

6 years ago

1.0.0

6 years ago