Go to file
2014-09-11 15:51:43 +08:00
.gitignore .gitignore for Mac OS X files 2014-09-11 15:45:27 +08:00
README.md Added project README 2014-09-11 15:51:43 +08:00

ZBar Barcode Scanner Plugin

This plugin integrates with the ZBar library, exposing a JavaScript interface for scanning barcodes (QR, 2D, etc).

API

Scan barcode

cloudSky.zBar.scan(params, onSuccess, onFailure)

Arguments:

  • params: Unused for now. Will be an object in the future if we extend this plugin with options to specify scannable barcode types, etc.
  • onSuccess: function (s) {...} Callback for successful scan.
  • onFailure: function (s) {...} Callback for cancelled scan or error.

Return:

  • success('scanned bar code') Successful scan with value of scanned code
  • error('cancelled') If user cancelled the scan (with back button etc)
  • error('misc error message') Misc failure