UNPKG
cordova-plugin-serial-magic-gears
Version:
latest (0.2.0)
0.2.0
0.1.0
Used to write EPC rfid tags on android using SerialMagic Gears
cordova-plugin-serial-magic-gears
/
www
/
EPCWriter.js
10 lines
(8 loc)
•
271 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
/// <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]); } };