Code Monkey home page Code Monkey logo

cordova-plugin-barcodescanner-emdk's Introduction

This plugin is provided without guarantee or warranty

npm version npm downloads npm downloads npm licence

EMDK Barcode

This plugin defines an emdkBarcode object which provides an API for interacting with the 2D barcode scanner hardware scanner on Zebra devices. The EMDK library itself does support other scanner types like 1D and Camera, but this plugin is for the 2D scanner only! Feel free to change / extend it. The emdkBarcode object is not available until after the deviceready event.

document.addEventListener("deviceready", onDeviceReady, false);
function onDeviceReady() {
    console.log(emdkBarcode);
}

This plugin is based on https://github.com/darryncampbell/EnterpriseBarcodePoC by Darryn Campbell

Installation

cordova plugin add https://github.com/DavidTalamona/Cordova-Plugin-BarcodeScanner-EMDK.git

Requires Cordova 5.0 or higher otherwise your application will get build errors. When updating from a previous Cordova version it is necessary to re-add this plugin

Supported Platforms

  • Android

emdkBarcode.available

Boolean which is true when the EMDK scanner is available on the device.

Example

if (emdkBarcode.available) {
    console.log("EMDK is available");
);

emdkBarcode.startHardRead

Enables the barcode scanner hardware and the associated trigger, so pressing the hardware trigger will initiate a scan.

emdkBarcode.startHardRead(enableSuccess, enableFailure);

Example

emdkBarcode.startHardRead(
    function (scannedObj) {
        console.log("Scan data: " + scannedObj.data);
        console.log("Scan symbology: "  + scannedObj.type);
        console.log("Scan time: " + scannedObj.timestamp);
    },
    function (status) {
        console.log("Scanner failure: " + status.message);
    }
);

emdkBarcode.startSoftRead

Enables the barcode scanner hardware and the associated trigger, it will start scanning immediately without the need of a hardware trigger.

emdkBarcode.startSoftRead(enableSuccess, enableFailure);

Example

emdkBarcode.startSoftRead(
    function (scannedObj) {
        console.log("Scan data: " + scannedObj.data);
        console.log("Scan symbology: "  + scannedObj.type);
        console.log("Scan time: " + scannedObj.timestamp);
    },
    function (status) {
        console.log("Scanner failure: " + status.message);
    }
);

emdkBarcode.stopReading

Stops the currently active scan.

emdkBarcode.stopReading();

Updates

0.1.1

This update implements onPause and onResume CordovaPlugin methods. This allows the scanner to properly de-initialize and then restart when it enters a power-sleep cycle.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.