Files

24 lines
455 B
Markdown
Raw Permalink Normal View History

2025-06-30 16:07:31 +08:00
# PDA 红光扫码插件
青春塔项目PDA(AUTOID UTouch X3)设备监听红光扫码插件
使用DEMO:`https://m.shuto.cn:8681/center/uhf-demo.git`
## 安装插件
```
cordova plugin add git+https://m.shuto.cn:8681/center/cordova-plugin-redscanner.git
2025-06-30 16:07:31 +08:00
```
## 引入插件
```
declare const cordova: any;
```
## 方法
```
cordova.plugins.redScanner.scan((code: string) => {
console.log(code);
}, (error: any) => {
console.log(error);
});
```