Skip to content

Cordova plugin to support Barcode scanning in the Motorola Android devices

License

Notifications You must be signed in to change notification settings

scor4er/motorola-emdk-cordova-plugin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Cordova Motorola EMDK Barcode Scanning Plugin

This is a Cordova/Phonegap plugin to interact with Motorola/Zebra ruggedized devices' Barcode Scanners (eg, ET1, MC40, TC55). The plugin works via Zebra EMDK Barcode API. Plugin required the device with Zebra EMDK v3.0 or higher installed.

To install, run the following from your project command line: $ cordova plugin add https://github.com/scor4er/motorola-emdk-cordova-plugin.git

Usage:

document.addEventListener("deviceready", onDeviceReady, false);

function onDeviceReady() {
  if (emdk) {
      emdk.start();
      emdk.registerForBarcode(function (data) {
          var labelType = data.type,
              barcode = data.barcode;
      });
  }
}

About

Cordova plugin to support Barcode scanning in the Motorola Android devices

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published