更新记录

1.0.2(2024-11-27) 下载此版本

1.0.1(2024-11-27) 下载此版本

串口打开/接收/发送


平台兼容性

Vue2 Vue3
App 快应用 微信小程序 支付宝小程序 百度小程序 字节小程序 QQ小程序
HBuilderX 4.29 × × × × × ×
钉钉小程序 快手小程序 飞书小程序 京东小程序
× × × ×
H5-Safari Android Browser 微信浏览器(Android) QQ浏览器(Android) Chrome IE Edge Firefox PC-Safari
× × × × × × × × ×

1打开串口通信 openSerialPort() 示例 openSerialPort() //调用

2.1原生插件发送消息 device_message_send(message) 参数 类型 说明 message string 发送的十六进制消息 示例

device_send("1AA1")//发送1AA1

2.2原生监听串口数据 device_message_read(message) 参数 类型 说明 message function 回调函数

message(rec) 参数 类型 说明 rec string 收到的数据

示例: device_message_read(message); function message(ref) { console.log("接收到的消息: " + ref); }

3.1封装后发送消息 device_output(io_num,io_state) 参数 类型 说明 io_num INT 设备输出端口号 io_state bool 设备输出状态

示例 device_output(1,true) //端口号:1,端口状态;true

3.2封装后的监听串口数据 device_input(message) 参数 类型 说明 message function 回调函数

message(io_num,io_bool) 参数 类型 说明 io_num INT 设备输入端口号 io_bool bool 设备输出状态

示例 device_input(message); message(io_num, io_bool) { console.log("IO Number: " + io_num); // 结果:1 console.log("IO State: " + io_bool); //结果:true }

隐私、权限声明

1. 本插件需要申请的系统权限列表:

2. 本插件采集的数据、发送的服务器地址、以及数据用途说明:

3. 本插件是否包含广告,如包含需详细说明广告表达方式、展示频率:

许可协议

MIT协议

暂无用户评论。

使用中有什么不明白的地方,就向插件作者提问吧~ 我要提问