我是靠谱客的博主 无心蛋挞,最近开发中收集的这篇文章主要介绍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);

最后

以上就是无心蛋挞为你收集整理的cordova与android通信_GitHub - luckxiang/cordova-plugin-serial-port: ionic3 基于cordova编写的安卓串口通信插件 ionic3...的全部内容,希望文章能够帮你解决cordova与android通信_GitHub - luckxiang/cordova-plugin-serial-port: ionic3 基于cordova编写的安卓串口通信插件 ionic3...所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(42)

评论列表共有 0 条评论

立即
投稿
返回
顶部