UNPKG

cordova-plugin-serial-magic-gears

Version:

Used to write EPC rfid tags on android using SerialMagic Gears

10 lines (8 loc) 271 B
/// <reference path="/js/config.js" /> /// <reference path="/js/helpers.js" /> var exec = require("cordova/exec"); var serialMagicGears = { writeEpc: function (epc, onSuccess, onFailure) { exec(onSuccess, onFailure, "EPCWriter", "writeEPC", [epc]); } };