在节点js上使用BLENO无法为主要服务显示BLE特征

时间:2017-06-04 23:11:42

标签: node.js bluetooth-lowenergy bleno

我有一个简单的应用程序如下所示。我已经在Rpi3上的节点j上使用BLENO创建了一个主服务并为我的服务添加了特性。

似乎我的应用程序启动并运行正常。我使用了两个工具来查看我的BLE服务,即Nordic nRF应用程序和我在Android中编写的简单应用程序。

使用这些应用我可以看到我的BLE应用广告,我也可以连接到它。连接后,我可以看到三个服务,这两个服务是两个通用的,一个是我的“未知服务”,它具有我在BLE服务器应用程序中设置的匹配UUID。

我遇到的问题是当我花费我的服务时,它告诉我没有为我的服务设置特征。

如果有人可以查看下面的代码并检查我的服务中没有出现任何特征的可能原因,我将不胜感激。

`var bleno = require("bleno");
var BlenoPrimaryService = bleno.PrimaryService;
var Characteristic = bleno.Characteristic;
var Descriptor = bleno.Descriptor;
//var UserConfigCharecteristic = require('./user-config-characteristic');

bleno.on('stateChange', function (state) {
    console.log('on -> stateChagne: ' + state);
    if (state === 'poweredOn') {
        console.log('ble has been powered on');
        bleno.startAdvertising('rpi-ble-app', ['fffffffffffffffffffffffffffffff0']);
    } else {
        bleno.stopAdvertising();
    }
});

bleno.on('advertisingStart', function () {
console.log('-> advertising start');
bleno.setServices([
    new BlenoPrimaryService(
            {
                uuid: 'fffffffffffffffffffffffffffffff0',
                charecteristics: [
                    new Characteristic({
                        uuid: 'fffffffffffffffffffffffffffffff1', // or 'fff1' for 16-bit
                        properties: ['read', 'write'], // can be a combination of 'read', 'write', 'writeWithoutResponse', 'notify', 'indicate'
                        secure: [], // enable security for properties, can be a combination of 'read', 'write', 'writeWithoutResponse', 'notify', 'indicate'
                        value: null, // optional static value, must be of type Buffer - for read only characteristics
                        descriptors: [],
                        onReadRequest: null, // optional read request handler, function(offset, callback) { ... }
                        onWriteRequest: null, // optional write request handler, function(data, offset, withoutResponse, callback) { ...}
                        onSubscribe: null, // optional notify/indicate subscribe handler, function(maxValueSize, updateValueCallback) { ...}
                        onUnsubscribe: null, // optional notify/indicate unsubscribe handler, function() { ...}
                        onNotify: null, // optional notify sent handler, function() { ...}
                        onIndicate: null // optional indicate confirmation received handler, function() { ...}
                    })
                ]
            }
    )], function (error) {
    console.log('setServices: ' + (error ? 'error ' + error : 'success'));
});

});

bleno.on('servicesSet', function () {
    console.log('services set.');
});`

我的node.js应用程序的输出是

on -> stateChagne: poweredOn
ble has been powered on
-> advertising start
services set.
setServices: success

2 个答案:

答案 0 :(得分:0)

检查一下。 https://github.com/sandeepmistry/bleno/issues/301。 但是,我的问题是服务不可见。

答案 1 :(得分:0)

似乎我发现了问题,我拼错了特征。

我是nodejs的新手并且意识到错误拼写可能是一个问题,因为如果你拼错你不会覆盖你将添加一个新的属性。