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
    评论
一、概述 本Xtra实现基本的串口通信功能,能够在Director应用与下位机之间实现10进制数值的收发。 二、方法说明 1、new 用途: 创建xCom Xtra实例 参数:无 返回值: xCom Xtra实例 示例: xCom = new xtra("xCom") 说明: 建立xCom Xtra实例时,并没有约定通信协议,所以,强烈建议随后执行初始化,以避免通信失败。 2、init 用途: 初始化串口通讯配置 参数: object me xCom Xtra实例 integer portNum 端口号 整数 根据机器的串口状态设 integer BaudRate 波特率 整数 只能为4800/9600/19200之一,否则默认为9600 返回值: integer failNum 返回值为0,表示初始化成功,否则为失败 示例: xCom.init(1, 9600) 说明: a、在通常的串口通信中,还有数据位、停止位、奇偶校验位、电平控制等设置,为了简化应用,本Xtra默认设置为8位数据位,1位停止位,无奇偶校验,电平控制为默认。 b、考虑到应用标准化问题,本Xtra只支持3种固定波特率(4800/9600/1920) 3、close 用途: 关闭串口,释放资源 参数: object me xCom Xtra实例 返回值: integer failNum 返回值为0,表示成功关闭串口、释放资源,否则为失败 示例: xCom.close() 4、read object me --> list received 用途: 读取数据 参数: object me xCom Xtra实例 返回值: list received 列表中每个元素均为10进制整数,具体含义由通讯双方约定 示例: xCom.read() 5、write object me, list aList --> integer failNum 用途: 写入数据 参数: object me xCom Xtra实例 list received 列表中每个元素均为10进制整数,具体含义由通讯双方约定 返回值: integer failNum 返回值为0,表示数据写入成功,否则为失败 示例: myData = “MyData” aList = [] repeat with i = 1 to myData.length aChar = myData.char[i..i] aList.add(charToNum(aChar)) end repeat xCom.write(aList)

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值