登录 注册
当前位置:主页 > 资源下载 > 47 > cordova插件具备支持android蓝牙设备的功能

cordova插件具备支持android蓝牙设备的功能

  • 更新:2024-08-06 20:54:44
  • 大小:14KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:Android - 移动开发
  • 格式:RAR

资源介绍

本插件支持androd同时连接多个蓝牙 设备,支持同时通信,例子在examples中,设备我在index.js里面写死了,为了便于调试,下载下来的时候稍微改一下, onDeviceList: function(devices) { var deviceList=document.getElementById("deviceList"); deviceList.innerHTML = ""; devices.forEach(function(device) { var name=device.name; var id=device.id; var listItem = document.createElement('li'), html = '' + name + '[' + id+']'; listItem.innerHTML = html; deviceList.appendChild(listItem); if(name.indexOf("HC")>-1){ $ble.devices.W=device; } if(name.indexOf("Gprinter_3915")>-1){ $ble.devices.P1=device; } if(name.indexOf("Gprinter_AAC5")>-1){ $ble.devices.P2=device; } }); }, 改这里