0.5.0 • Published 6 years ago
cordova-plugin-honeywellpluginct60 v0.5.0
cordova-plugin-HoneyWellPluginCt60 Plugin Scanner on device honeywell CT60 ( barcode + typebarcode ).
Honeywell TC60 Barcode Scanner and external device using the com.honeywell.aidc SDK (Honeywell_MobilitySDK_Android_v1.00.00.0054 DataCollection.jar )
Installation
cordova plugin add cordova-plugin-honeywellpluginct60
Tested
- Android 7.1.1 Honeywell TC60 with cordova 9.0.0 (cordova-lib@9.0.1)
javascript :
start application init The plugin ***
plugins.ct60.softwareInit( (data) => {
console.log('Software Init : ' + data);
},
(error) => {
console.log('Error occured: ' + error)
alert('Error occured ' + error );
}
);
start the scanner (read the code bar ) ***
plugins.ct60.softwareTriggerStart( (data) => {
//scan is done values are in data ( barcode + typebarcode separtor is ; )
console.log(' scan: ' + data);
var data1 = data.split(';');
var barcode = data1[0];
var typebarcode = data1[1];
console.log('Software scan: ' + barcode + ' Type: (' + typebarcode + ' )' );
}
,
(error) => { //Problem during the scan ( Time out , ....)
console.log('Error occured: ' + error)
}
);
stop the scanner if needing before the timeout ****
plugins.ct60.softwareTriggerStop();
0.5.0
6 years ago
0.4.9
6 years ago
0.4.8
6 years ago
0.4.7
6 years ago
0.4.6
6 years ago
0.4.5
6 years ago
0.4.4
6 years ago
0.4.3
6 years ago
0.4.2
6 years ago
0.4.1
6 years ago
0.4.0
6 years ago
0.3.9
6 years ago
0.3.8
6 years ago
0.3.7
6 years ago
0.3.6
6 years ago
0.3.5
6 years ago
0.3.4
6 years ago
0.3.3
6 years ago
0.3.2
6 years ago
0.3.1
6 years ago
0.3.0
6 years ago
0.2.9
6 years ago
0.2.8
6 years ago
0.2.7
6 years ago
0.2.6
6 years ago
0.2.5
6 years ago
0.2.4
6 years ago
0.2.3
6 years ago
0.2.2
6 years ago
0.2.1
6 years ago
0.2.0
6 years ago
0.1.9
6 years ago
0.1.8
6 years ago
0.1.7
6 years ago
0.1.6
6 years ago
0.1.5
6 years ago
0.1.4
6 years ago
0.1.3
6 years ago
0.1.2
6 years ago
0.1.1
6 years ago
0.1.0
6 years ago