- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用这个插件:https://github.com/don/cordova-plugin-ble-central
我可以扫描蓝牙设备,检测到我的体重秤并且我可以连接到它
但我无法从设备中获取任何数据。
使用该插件从蓝牙设备获取数据的过程是什么?
这里有一些代码错误:
W/PluginManager( 5949): THREAD WARNING: exec() call to BLE.stopScan blocked the main thread for 24ms. Plugin should use CordovaInterface.getThreadPool().
D/BluetoothGatt( 5949): connect() - device: 7C:66:9D:9E:46:31, auto: false
D/BluetoothGatt( 5949): registerApp()
D/BluetoothGatt( 5949): registerApp() - UUID=08a761d6-34e9-4db3-8c58-258786ad7c3c
D/BtGatt.GattService( 2228): registerClient() - UUID=08a761d6-34e9-4db3-8c58-258786ad7c3c
D/BtGatt.GattService( 2228): onClientRegistered() - UUID=08a761d6-34e9-4db3-8c58-258786ad7c3c, clientIf=5
D/BluetoothGatt( 5949): onClientRegistered() - status=0 clientIf=5
D/BtGatt.GattService( 2228): clientConnect() - address=7C:66:9D:9E:46:31, isDirect=true
D/btif_config( 2228): btif_get_address_type: Device [7c:66:9d:9e:46:31] address type 0
D/btif_config( 2228): btif_get_device_type: Device [7c:66:9d:9e:46:31] type 2
D/cr_Ime ( 5949): [InputMethodManagerWrapper.java:59] isActive: true
D/cr_Ime ( 5949): [InputMethodManagerWrapper.java:68] hideSoftInputFromWindow
E/bt-btm ( 2228): Random unmatch
W/bt-btm ( 2228): btm_acl_created hci_handle=2 link_role=0 transport=2
W/bt-btif ( 2228): info:x0
W/bt-l2cap( 2228): L2CA_SetDesireRole() new:x0, disallow_switch:0
D/ ( 2228): remote version info [7c:66:9d:9e:46:31]: 0, 0, 0
D/BtGatt.GattService( 2228): onConnected() - clientIf=5, connId=5, address=7C:66:9D:9E:46:31
D/BluetoothGatt( 5949): onClientConnectionState() - status=0 clientIf=5 device=7C:66:9D:9E:46:31
D/BluetoothGatt( 5949): discoverServices() - device: 7C:66:9D:9E:46:31
D/BtGatt.GattService( 2228): discoverServices() - address=7C:66:9D:9E:46:31, connId=5
E/bt-btif ( 2228): No More Service found
D/BtGatt.GattService( 2228): onSearchCompleted() - connId=5, status=0
D/BluetoothGatt( 5949): onSearchComplete() = Device=7C:66:9D:9E:46:31 Status=0
E/PluginManager( 5949): Uncaught exception from plugin
E/PluginManager( 5949): java.lang.NumberFormatException: Invalid long: "0000null"
E/PluginManager( 5949): at java.lang.Long.invalidLong(Long.java:124)
E/PluginManager( 5949): at java.lang.Long.parse(Long.java:363)
E/PluginManager( 5949): at java.lang.Long.parsePositiveLong(Long.java:413)
E/PluginManager( 5949): at java.util.UUID.fromString(UUID.java:190)
E/PluginManager( 5949): at com.megster.cordova.ble.central.UUIDHelper.uuidFromString(UUIDHelper.java:32)
E/PluginManager( 5949): at com.megster.cordova.ble.central.BLECentralPlugin.uuidFromString(BLECentralPlugin.java:573)
E/PluginManager( 5949): at com.megster.cordova.ble.central.BLECentralPlugin.execute(BLECentralPlugin.java:163)
E/PluginManager( 5949): at org.apache.cordova.CordovaPlugin.execute(CordovaPlugin.java:117)
E/PluginManager( 5949): at org.apache.cordova.CordovaPlugin.execute(CordovaPlugin.java:98)
E/PluginManager( 5949): at org.apache.cordova.PluginManager.exec(PluginManager.java:133)
E/PluginManager( 5949): at org.apache.cordova.CordovaBridge.jsExec(CordovaBridge.java:59)
E/PluginManager( 5949): at org.apache.cordova.engine.SystemExposedJsApi.exec(SystemExposedJsApi.java:41)
E/PluginManager( 5949): at org.chromium.base.SystemMessageHandler.nativeDoRunLoopOnce(Native Method)
E/PluginManager( 5949): at org.chromium.base.SystemMessageHandler.handleMessage(SystemMessageHandler.java:39)
E/PluginManager( 5949): at android.os.Handler.dispatchMessage(Handler.java:102)
E/PluginManager( 5949): at android.os.Looper.loop(Looper.java:135)
E/PluginManager( 5949): at android.os.HandlerThread.run(HandlerThread.java:61)
W/cr_BindingManager( 5949): Cannot call determinedVisibility() - never saw a connection for the pid: 5949
D/HeadsetStateMachine( 2228): Disconnected process message: 10, size: 0
最佳答案
ble.connect(deviceMac,function(peripheral){
console.log(peripheral); //print your peripheral
},function(){
console.log("error connecting");
})
var service="ffe0"; //or appropriate uuid
var characteristic="ffe1" //or appropriate uuid
ble.startNotification(deviceMac,service,characteristic,function(data){
try{
console.log(bytesToString(data)); //convert the array buffer into readable string
}catch(e){
console.log(e);
}
},
function(){
console.log("error starting notifications.");
});
function bytesToString(buffer)
{
var arr = new Uint8Array(buffer);
var str = String.fromCharCode.apply(String, arr);
if(/[\u0080-\uffff]/.test(str))
{
throw new Error("this string seems to contain (still encoded) multibytes");
}
return str;
}
关于cordova - 从秤设备获取蓝牙数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41332075/
我使用plugman命令在cordova中创建了一个插件 它创建了所有必需的文件。然后我在插件中添加了android平台。 然后我尝试将它添加到 cordova 应用程序中。我成功添加了它,但是当我尝
我使用plugman命令在cordova中创建了一个插件 它创建了所有必需的文件。然后我在插件中添加了android平台。 然后我尝试将它添加到 cordova 应用程序中。我成功添加了它,但是当我尝
我正在尝试在较旧的 Atrix 上安装一个应用程序,在 S3 上运行良好。搜索论坛可能的问题是SDK版本较高(Atrix是4.0.4)。修复显然是在设置 API 级别。 但是当我运行 cordova
使用 cordova build在一个为期一年的项目中提出: :processDebugResources my_project/platforms/android/build/intermediat
我有一个可以创建文件的可运行应用程序。 我正在寻找一种工作后数小时从cordova应用程序中删除文件的方法。我似乎无法使其正常工作。 这是用于创建和删除文件的代码: function crea
有什么区别吗Cordova 构建 Android 和 Cordova 准备 Android 命令? Reference is added here 最佳答案 准备将您的 www Assets 和任何插
我检查了文档,但没有找到关于此命令的明确说明。 那么,有谁知道cordova prepare命令的作用是什么? 是否更新特定于平台的www文件夹? 如果是,它将复制根www的全部内容吗? 它会更新平台
我们正在开发正在使用Cordova(专用于Ionic)的移动应用程序,并且正在使用PhoneGap PushPlugin和Amazon SNS进行推送通知。反过来,这会撞到我们与Amazon SNS进
我正在使用Vue,Webpack和Cordova。 Videos 如果我在没有Cordova的情况下加载页面,并且在Firefox浏览器中,则可以使用Youtube视频上的全屏图
因此,我尝试在我的(正在运行的)Ionic应用程序中安装一个新插件,该文件名为https://ionicframework.com/docs/native/firebase-dynamic-links
我像这样安装了cordova: C:\Windows\system32>npm install -g cordova 我明白了: C:\Users\cyril\AppData\Roaming\npm\
我有一个 cordova 应用程序,我使用以下代码捕获了后退按钮: document.addEventListener("backbutton", function (e) { bac
如何在 Cordova 中的蓝牙设备和 Android/iOS 之间发送和接收一系列数据字节? 我的项目的详细信息: 我正在开发一个蓝牙传感器设备。设备以一系列字节的形式发送数据。它还对设备 API
我是 cordova 开发的新手。我使用 Onsen UI (1.2.1) 作为布局框架。ons-toolbar 上的标题有问题。 someTextHere 如果我在 ripple 上运行
我有一个启用了平台浏览器的 Cordova 应用程序。我想在 Chrome 中使用摄像头,但调用摄像头根本没有任何反馈。它在我的 Android 设备上就像一个魅力。 我通过这个命令启动:cordov
我对thid docs https://firebase.google.com/docs/android/setup#available_libraries中提到的根级和应用程序级的路径目录感到困惑
喜欢这些插件 https://github.com/ArchieGoodwin/SilentShot https://github.com/alongubkin/phonertc 他们没有 tarba
我有一个 Angular 2 应用程序,我正在将其构建到 cordova 中并部署到 Android/IOS。我没有使用 ionic,我见过许多使用 ionic 的解决方案,但我现在无法将整个项目转换
当我发出命令时,在带有 Cordova 的 Ionic 3 中: ionic cordova run android --emulate 它给出以下消息: BUILD FAILED in 3s
我无法在 ionic 5.2.4v 中安装软件包 cordova-res 并收到以下错误。 命令:cordova-res C:\hanu\cordova-res-master\cordova-res
我是一名优秀的程序员,十分优秀!