cordova与android通信_GitHub - luckxiang/cordova-plugin-serial-port: ionic3 基于cordova编写的安卓串口通信插件 ionic3...

cordova-plugin-serial-port

ionic3 基于cordova编写的安卓串口通信插件 ionic3 serial port plugins for android

support

read string & hexString

write string & hexString

write data and wait response

read is not block, you must check read data in you application. include response data.

if you recive 2 or more message and do not read in time. you will get all in next read.

UART device does not check data is complete & right. you should have a protocol for exchanging data between two devices.

how to use

add the plugins to your project 'ionic cordova plugins add ./cordova-plugin-serial-port'

'declare let cordova: any;'before use api. this way not good. can anybody help me?

enjoy

API

openDevice

param:

config

success callback

error callback

config:

dev: serial port device node

baudrate: serial port baud rate

flags: srdial port flags

isHex: if you want to use hexString you should set it to true.

example:

cordova.plugins.SerialPortPlugin.openDevice([{dev:'/dev/ttyS0',baudrate:115200, flags:0, isHex:false}],

result=>alert(result),

error=>alert(error));

}

closeDevice

example:

cordova.plugins.SerialPortPlugin.closeDevice(

result=>alert(result),

error=>alert(error)

);

read

example:

cordova.plugins.SerialPortPlugin.read(

res=> {

console.log(res);

alert(res);

},

error=> {

alert(error);

});

write

example:

cordova.plugins.SerialPortPlugin.write('12345678900000000000000000000000123',

res=> {

console.log(res);

alert(res);

},

error=> {

alert(error);

});

sendDataAndWaitResponse

response data maybe not complete,you can use read api to get the rest.

param:

arg1: data

arg2: timoutMs

example:

cordova.plugins.SerialPortPlugin.sendDataAndWaitResponse('12345678900000000000000000000000123',1000,

res=> {

console.log(res);

alert(res);

},

error=> {

alert(error);

});

setHex

you can change the hexString | string after openDevice

example:

cordova.plugins.SerialPortPlugin.setHex(true);

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值